@font-face {
    font-family: Aspal;
    src: url(./Resource/Font/Aspal.otf);
}

@font-face {
    font-family: OpenSans;
    src: url(./Resource/Font/OpenSans.ttf);
}

body {
    font-family: Aspal;
}

.logo-container{
    text-align: center;
    margin-top: 1.5em;
}
.logo {
    height: 10em;

}

.social-icons {
    text-align: center;
    font-size: 2.5em;
    cursor: pointer;
}

.main-text {
    color: white;
    text-align: center;
    margin-top: 4em;
}

.main-text p {
    font-weight: 400;
    font-size: 25px;
    letter-spacing: 1px;
}

.active-buttons {
    font-family: OpenSans;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px
}

.active-buttons a {
    background-color: white;
    color: black;
    padding: 15px;
    font-weight: 400;
    border-radius: 8px;
    width: 150px;
    transition: 0.5s;
    cursor: pointer;
    text-decoration: none;
}

.active-buttons a:hover {
    background-color: black;;
    color: white;
    border: 1px solid white;
}

@media only screen and (min-width: 800px) {
    .logo {
        height: 15em;
    }

    .active-buttons {
        display: flex;
        justify-content: center;
        flex-direction: row;
    }

    .social-icons {
        text-align: center;
        font-size: 3em;
        cursor: pointer;
    }
}