.containment {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(https://assets.hybt.ca/img/mtn.jpg);
    background-position: center;
    background-size: cover;
    font-family: 'Inter', sans-serif;
    color: white;
}

header {
    height: 80px;
    display: flex;
    justify-content: space-between;
}

.topleft {
    padding: 10px;
}

.toplogo {
    height: 100%;
}

.toplogo img {
    height: 100%;
}

.topright nav {
    height: 100%;
}

.topright ul{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    list-style-type: none;
}

.topright li {
    font-size: 17px;
}

.topright a {
    margin-right: 10px;
    color: #f5ea76;
    font-weight: 600;
    text-decoration: none;
}

.topright a:hover {
    color: white;
}

main {
    height: calc(100vh - 130px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 30px;
}

.center h1 {
    font-weight: 100;
}

.center p {
    font-weight: 200;
    font-size: 18px;
}

.center a {
    text-decoration: none;
    color: #f5ea76;
}

.center a:hover {
    text-decoration: underline;
}

.center .logo {
    width: 200px;
}

.center .logo img {
    width: 100%;
}

footer {
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .legal ul {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    list-style-type: none;
    margin-left: 5px;
}

footer .legal li {
    margin-left: 5px;
    text-decoration: none;
}

footer .legal a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

footer .legal a:hover {
    text-decoration: underline;
}

footer .ver ul {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    list-style-type: none;
    margin-right: 5px;
}

footer .ver li {
    margin-right: 5px;
    text-decoration: none;
}

footer .ver a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

footer .ver a:hover {
    text-decoration: underline;
}

.mobile {
    display: none;
}

@media (max-width: 768px) {
    body header, main, footer {
        display: none;
    }

    .mobile {
        display: flex;
        text-align: center;
        font-size: 20px;
        width: 100vw;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .mobtext {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}