@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@600&display=swap');

html,
body {
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

.home-landing {
    background-image: url("../images/Background.jpg");
    background-position: center center;
    background-size: cover;
    min-height: 100vh;
    padding: 0 2rem;
}

.landing-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    text-align: center;
}

.landing-content img {
    width: 25vw;
    margin-bottom: 2rem;
}

.landing-content a {
    font-family: "Nunito";
    color: #01172b;
    text-decoration: none;
    font-size: 1.2rem;
    display: block;
    margin: 0.25rem 0;
}

@media screen and (max-width: 768px) {
    .landing-content img {
        width: 35vw;
    }
}

@media screen and (max-width: 576px) {
    .landing-content img {
        width: 50vw;
    }
}