@font-face {
    font-family: right;
    src: url(fonts/Righteous/Righteous-Regular.ttf);
  }

  @font-face {
    font-family: start;
    src: url(fonts/Press_Start_2P/PressStart2P-Regular.ttf);
  }

body {
    box-sizing: border-box; 
    background-color: black;
    color: white;
}

/* ********************************************
Header */

header {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100px;
    background-color: rgb(139, 213, 231);
    font-family: start;
    color: black;
}

h1 {
    padding-top: 10px;
    font-size: 50px;
}

.hamburgerMenu {
    position: fixed;
    top: 30px;
    right: 20px;
    color: black;
    font-size: 40px;
}

.menu {
    display: none;
    position: fixed;
    top: 80px;
    right: 20px;
    background-color: rgb(54, 138, 138);
    border-radius: 10px;
    padding: 0px 10px;
}

.menu a {
    text-decoration: none;
}

/* **************************************************** 
main top */



main {
    background-image: url(jpgs/station.jpg);
    background-size: stretch;
    height: 80vh;
    margin-top: 120px;
    font-family: right;
}

.subtitle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 80px;
    font-size: 40px;
    margin: 80px 0px;
    
}

/* ************************************************ 
Cards */

.choices {
    display: flex;
    justify-content: space-around;
}

.choiceCard {
    
    
    width: 500px;
    height: 320px;
    background-color: red;
    
   
}

.choiceText {
    margin: 0px;
    opacity: 0.9;
}

.choices a {
    text-decoration: none;
    color: black;
}

.choiceCard img {
    padding: 25px;
    width: 450px;
    height: 280px;
}

/* ******************************************** 
footer */

footer {
    position: fixed;
    background-color: gray;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 40px;
    font-size: 14px;
}

footer p {
    margin-bottom: 0px;
    margin-top: 10px;
    text-align: center;
}

footer img {
    width: 20px;

}