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

body {
    height: 100vh;
    background-image: url('./assets/background.png');
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7vh;
}

.logo {
    width: 40vh;
    padding: 2em;
}

.logo img {
    width: 100%;
}

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

.buttons button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 12em;
    height: 7vh;
    border: none;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5em;
    background-color: #d8ac64;
    color: #fff;
    cursor: pointer;
    box-shadow: 0px 0px 18px 6px rgba(255,255,255,0.75);
    -webkit-box-shadow: 0px 0px 18px 6px rgba(255,255,255,0.75);
    -moz-box-shadow: 0px 0px 18px 6px rgba(255,255,255,0.75);
}

.buttons button:hover {
    background-color: #e6bd83;
    transition: 500ms ease-in-out;
}

.link {
    color: #fff;
    text-decoration: none;
}

.socialMidias {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3em;
    position: absolute;
    bottom: 1em;
    width: 100vw;
}

.socialMidias a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2em;
}

.socialMidias img {
    width: 4vh;
    -webkit-box-shadow: 0px 0px 15px 1px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 15px 1px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 15px 1px rgba(0,0,0,0.75);
}


@media (max-width: 1080px) {
    body {
        background-position: center;
    }
}

@media (max-width: 600px) {
    .socialMidias {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 10px;
        width: auto;
    }
}