:root{
    --grå: #2c2c2c;
    --orange: #d7811f;
    --green: #005835;
    --blaa: #003d85;
    --rod: #ca020c;
}
/* Implementering af de fonte vi bruger */
@font-face {
  font-family:'Passata';
  src: url(../fonts/AUPassata_Bold.ttf) format('truetype'); 
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family:'PassataRg';
  src: url(../fonts/AUPassata_Rg.ttf) format('truetype'); 
  font-weight: normal;
  font-style: normal;
}

/* Styling til iPad pro */
@media screen and (width: 1366px) and (height: 1024px) and (orientation: landscape) {
    /* Generel styling af body til alle sider */
    body {
        font-family: 'Passata', sans-serif;
        background-color: var(--grå);
        margin: 0;
        color: white;
        padding: 0;
        overflow: hidden;
        height: 100%;
        width: 100%;    
        box-sizing: border-box;
    }
    /* Styling af baggrundsbilledet til alle sider */
    .road {
        max-width: 100%;
        position: absolute;
        z-index: -1;
    }
    /* Styling af logo på forside */
    .logo {
        position: absolute;
        top: 4%; 
        left: 50%;
        transform: translateX(-50%);
        max-width: 175px; 
        height: auto;
    }
    /* Styling af tekst site-tekst til alle sider */
    .vertical-text {     
      font-size: 1.8rem;              
      color: #a0a0a0;              
      font-weight: bold;              
      position: fixed;                
      left: 0;                        
      top: 2%;                      
      letter-spacing: 0.2em;          
      padding: 1rem;                  
      writing-mode: vertical-rl;
      transform: rotate(180deg);      
      opacity: 75%;                   
      margin-left: 1.5rem;          
  }
    /* Styling af de 3 knapper i bunden */
    .bottom-icons {
        position: fixed;
        bottom: 20px;
        left: 11%;
        transform: translateX(-50%);
        display: flex;
        gap: 20px;
        z-index: 1000;
        
      }
      
      .icon-button {
        background-color: white;
        border: none;
        border-radius: 50%;
        width: 75px;
        height: 75px;
        padding: 10px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
      }
      
      .icon-button img {
        max-width: 90%;
        max-height: 90%;
        object-fit: contain;
      }

      /* Styling af de 3 navigationsmuligheder der er på forsiden */
      .container {
        display: flex;
        gap: 4rem;
        justify-content: center;
        align-items: center; 
        height: 100vh; 
      }

      .container p{
        font-size: 2.5rem;
      }

      .container a{
        text-decoration: none;
        color: white;
      }

      .card {
        width: 350px;
        height: 520px;
        border-radius: 20px;
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        text-align: center;
        font-size: 1.5rem;
        font-weight: bold;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        transition: transform 0.2s ease;
      }
      
      .card:hover {
        transform: scale(1.05);
      }
      
      .card-content {
        padding: 1rem;
      }
      
      .crash {
        background-color: var(--rod);
        background-image: url(../billeder/crash.webp);
        background-size: 75%;
        background-repeat: no-repeat; 
        background-position-x: center;
        background-position-y: 35%;
      }
      
      .quiz {
        background-color: var(--orange);
        background-image: url(../billeder/pære.webp);
        background-size: 75%;
        background-repeat: no-repeat;
        background-position-x: center;
        background-position-y: 60%;
      }
      
      .info {
        background-color: var(--blaa);
        background-image: url(../billeder/sporg.webp);
        background-size: 45%;
        background-repeat: no-repeat;
        background-position-x: center;
        background-position-y: center;
      }


    }