@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

html {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-color: #393939;
    font-family: 'Montserrat', sans-serif;
}

#logo-area {
    position: absolute;
    top: 80px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-width: 100vw;
}

#logo-area img {
    height: 120px;
}

#painel-boas-vindas {
    -webkit-box-shadow: 0px -1px 15px -4px rgba(0,0,0,0.16); 
    box-shadow: 0px -1px 15px -4px rgba(0,0,0,0.16);
    padding: 40px;
    border-radius: 30px;
    background-color: #fff;
    font-size: 18px;
    text-align: center;
    /* max-height: 100vh; */
    /* transition: transform 0.8s; */
}

#painel-boas-vindas:hover {
    /* transform: scale(1.03); */
}

#painel-boas-vindas > a {
    text-decoration: none;
    border: none;
    border-radius: 17px;
    padding: 10px 20px;
    background-color: #7f1cb3;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
}

#painel-boas-vindas > a:hover {
    background-color: #751ca5;
}

#creditos {
    position: absolute;
    bottom: 5px;
    left: 15px;
    font-size: 12px;
}

@media screen and (max-width: 600px) {
    #logo-area {
        position: absolute;
        top: 25px;
        /* display: none; */
    }
    
    #logo-area img {
        height: 80px;
    }

    #painel-boas-vindas {
        position: absolute;
        top: 130px;
    }
}