:root {
    --P1: #685414;
    --P2: ;
    --P3: ;
}
body {
    font-family: Verdana, Helvetica, sans-serif;
    background: #fcf8de;
}

body {
  margin: 0; /* Reset default margin */
  padding: 0; /* Reset default padding */
}

.container {
  width: 100%; /* Take full width of the viewport */
  max-width: 760px; /* Set a maximum width for the container */
  margin-left: auto; /* Center the container horizontally */
  margin-right: auto; /* Center the container horizontally */
  padding-left: 20px; /* Add left padding */
  padding-right: 20px; /* Add right padding */
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  .container {
    padding-left: 10px; /* Reduce left padding for smaller screens */
    padding-right: 10px; /* Reduce right padding for smaller screens */
  }
}

.line {
    margin: 8px 4px 8px 4px;
    border: 1.5px solid #000000;
    border-radius: 5px;
}

.section-1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    }
    
    .s11 { grid-area: 1 / 1 / 2 / 3; }
    .s12 { grid-area: 1 / 3 / 4 / 4; }
    .s13 { grid-area: 2 / 1 / 4 / 3; }
    .s14 { grid-area: 4 / 1 / 5 / 3; }
    .s15 { grid-area: 4 / 3 / 5 / 4; }

.section-1 {
    text-align: center;
    margin: 10px;
    padding: 15px;
    border: 3px solid #000000;
    border-radius: 10px;
    background: rgb(101,129,83);
    background: linear-gradient(180deg, rgba(101,129,83,1) 69%, rgba(245,237,234,1) 69%);
}

.s11 {
    border: 2px solid #ffffff;
    border-radius: 6px;
    padding: 10px;
    width: auto;
}

.s12 {
    width: 100px;
    height: 100px;
    border: 2px solid #ffffff;
    border-radius: 6px;
    padding: 10px;
}

.s13 {
    font-family: Helvetica, sans-serif;
    font-size: 5.9vmin;
    text-transform: uppercase;
    text-shadow: 2px 1px #ffffff;
    color: #ffbd23;
}

.s14 {
    padding-top: 8px;
    font-family: Helvetica, sans-serif;
    font-size: 2vmin;
    text-decoration: underline 2px solid #ffbd23;
    text-transform: uppercase;
    border: 2px solid #000000;
    border-radius: 6px;
}

.s15 {
    padding-top: 8px;
    background: rgb(101,129,83);
    border: 2px solid #000000;
    border-radius: 6px;
}

a {
    font-size: 2vmin;
    text-align: left ;
    font-weight: bold;
    text-transform: uppercase;
    color: #ffffff;
    padding: 10px;
    text-decoration: underline;
}

.s12 img {
    border-radius: inherit;
    width: inherit;
    height: inherit;
}

.section-2 {
    text-align: center;
    margin: 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    }
    
    .s1 { grid-area: 1 / 1 / 5 / 3; 
        border: 3px solid #000000;
        border-radius: 6px;
        height: 250px;
        overflow: scroll;

    }
    .s2 { grid-area: 1 / 3 / 3 / 4;
        border: 3px solid #000000;
        background: rgb(101,129,83);
        border-radius: 6px;
        font-size: 2vmin;
        padding: 2px;
        height: 110px;
        overflow: scroll;
     }
    .s3 { grid-area: 3 / 3 / 5 / 4; 
        border: 3px solid #000000;
        border-radius: 6px; 
        height: 110px;
        overflow: scroll;
    }

.section-2 .card {
    color: #ffffff;
    text-decoration: underline;
    background: rgb(101,129,83);
    margin: 5px;
    padding: 5px;
    height: 40px;
    border: 3px solid #000000;
    border-radius: 6px;
}

.section-3 {
    text-align: center;
    margin: 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    height: 20vmin;
}

.s31 {
    grid-area: 1 / 1 / 3 / 2;
    background: rgb(101,129,83);
    border: 3px solid #000000;
    border-radius: 6px;
}

.s32 {
    font-size: 2vmin;
     grid-area: 1 / 2 / 3 / 3;
     overflow: scroll;
}

.s31 .line {
    border-color: #ffffff;
}

.sun-container {
    display: flex;
    justify-content: center;
}

.sun-container svg {
    animation: spin 20s linear infinite;
  }
    
  @keyframes spin { 100% {
    transform: rotate(360deg);
}}

.s14:hover {
    color: #ffbd23;
    text-decoration-color:rgb(69, 94, 56) ;
}

.s11, .s12, .s13, .s14, .s15:hover {

    transform: translateX(2px) translateY(2px);


}
