* {
    margin: 0;
    padding: 0;
    font-family: 'Agency FB', sans-serif;
    text-decoration: none;
}

html {
    font-size: 10px;
}

.container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 0.45fr;
    grid-template-rows: 0.3fr 1fr 1fr;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas:
        "header header header nav"
        "content content content nav"
        "content content content nav";
    height: 100vh;
    width: 100vw;
    background-color: #ffffff;
}

.container-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas:
        "info info info"
        "fotos fotos fotos"
        "fotos fotos fotos";
    height: 100%;
    width: 100%;
    background-color: #ffffff;
}

.content {
    grid-area: content;
}

.header {
    grid-area: header;
    background-color: #00BBFF;


}

.nav {
    grid-area: nav;
    background-color: #1d2023;
}

.info {
    grid-area: info;
    background-color: #ffffff;

}

.foto1 {
    grid-area: foto1;
    background-color: #ffffff;
    display: grid;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    width: 100%;
}

.foto2 {
    grid-area: foto2;
    background-color: #ffffff;
    display: block;
    margin: auto;
    display: grid;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    width: 100%;
}

.foto3 {
    display: block;
    grid-area: foto3;
    background-color: #ffffff;
    margin: auto;
    display: grid;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    width: 100%;
}

.container-hrl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas:
        "header-left header-right";
    justify-content: left;
    align-items: center;
    position: relative;
    height: 100%;
}

.header-left {
    grid-area: header-left;
}

.header-right {
    grid-area: header-right;
}

body {
    margin: 0;
}


.sidenav a {
    font-size: 2vw;
    display: block;
    text-decoration: none;
    color: #ffffff;
    font-family: 'Agency FB', sans-serif;
    margin: 7.95%;
    text-align: center;
}

.sidenav a[href="index.html"] {
    color: #00BBFF;
}

.sidenav a:hover {
    color: #00DAFF;
}

.info h1 {
    font-size: 6.5rem;
    padding: 1rem;
}

.info p {
    font-size: 1.9rem;
    padding-left: 1rem;
    padding-top: 1rem;
    width: 60%;
}

.fotos {
    display: flex;
    grid-area: fotos;
    width: 100%;
    flex-direction: row;
}

#tw-tplg {
    width: 35%;
    height: auto;
    padding-left: 2%;

}

#link-tiles {
    width: 90%;
    height: auto;
    border-radius: 0.7rem;
    justify-self: center;
}

#link-tiles1 {
    width: 90%;
    height: auto;
    border-radius: 0.7rem;
    justify-self: center;
}

#link-tiles:hover {
    transform: scale(1.02);
    transition: .2s;
}

#link-tiles1:hover {
    transform: scale(1.02);
    transition: .2s;
}

.clr-accent {
    color: #00BBFF;
}

.menu {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.menu>li {
    margin: 0.5em 0; 
    overflow: hidden;

}

.menu-button-container {
    display: none;
    height: 100%;
    width: 100%;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

#menu-toggle {
    display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
    display: block;
    background-color: #ffffff;
    position: absolute;
    height: 0.4rem;
    width: 3rem;
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 0.2rem;

}

.menu-button::before {
    content: '';
    margin-top: -8px;
}

.menu-button::after {
    content: '';
    margin-top: 8px;
}

#menu-toggle:checked+.menu-button-container .menu-button::before {
    margin-top: 0px;
    transform: rotate(405deg);
}

#menu-toggle:checked+.menu-button-container .menu-button {
    background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked+.menu-button-container .menu-button::after {
    margin-top: 0px;
    transform: rotate(-405deg);
}

li {
    display: none;
}


@media (max-width: 768px) {
    .container {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 0.45fr;
        grid-template-rows: 0.3fr 1fr 1fr;
        gap: 0px 0px;
        grid-auto-flow: row;
        grid-template-areas:
            "header header header nav"
            "content content content nav"
            "content content content nav";
        height: 100vh;
        width: 100vw;
        background-color: #ffffff;
    }

    .container-content {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr;
        gap: 0px 0px;
        grid-auto-flow: row;
        grid-template-areas:
            "info info info"
            "fotos fotos fotos"
            "fotos fotos fotos";
        height: 100%;
        width: 100%;
        background-color: #ffffff;
    }
    
    .content {
        grid-area: content;
        overflow-y: scroll;
    }


    .fotos {
        display: flex;
        grid-area: fotos;
        width: 100%;
        flex-direction: column;
    }

    .container-hrl {
        width: 100vw;
    }

    .nav {
        display: none;
    }

    .header {
        width: 100vw;
    }

    .menu-button-container {
        float: right;
        margin-right: 5%;
        justify-self: center;
    }

    #tw-tplg {
        width: 18rem;
        margin: 5% 0;
    }

    #link-tiles {
        width: 60%;
        margin: 2% 0;
    }

    #link-tiles1 {
        width: 60%;
        margin: 8% 0 2% 0 ;
    }

    #link-tiles:hover {
        transform: scale(1.02);
        transition: .2s;
    }

    #link-tiles1:hover {
        transform: scale(1.02);
        transition: .2s;
    }

    .info {
        padding: 0;
        margin: 0;
    }

    .info h1 {
        font-size: 4rem;
        margin: 0 2%;
        margin-top: 2%;
        padding: 0;
        /* text-align: center; */
    }

    .info p {
        font-size: 1.9rem;
        /* text-align: center; */
        width: 96%; 
        padding: 0;
        margin: 0 2%;
    }

    .menu-button-container {
        display: flex;
    }

    .menu {
        position: absolute;
        top: 100%;
        right: 0;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    #menu-toggle~.menu li {
        height: 0;
        margin: 0;
        padding: 0;
        border: 0;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    #menu-toggle:checked~.menu li {
        height: 2.5em;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    .menu>li {
        display: flex;
        justify-content: center;
        width: 100%;
        height: 100%;
        color: #00BBFF;
        background-color: #1d2023;
        font-size: 2rem;
        text-decoration: none;
        align-items: center;
        z-index: 778;
    }

    a {
        color: #ffffff
    }

    .menu a[href="index.html"] {
        color: #00BBFF;
    }

    .menu a {
        width: 100%;
        text-align: center;
    }




    



}