@font-face {
    font-family: 'mclaren';
    src: url('fonts/FredokaOne-Regular.ttf') format('truetype');
}

html {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #E3DBC0;
    display: flex;
    align-items: center;
    justify-content: center;
}

body {
    margin: 0;
    width: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.up {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;

}

.down{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.lemonadeLogo{
    pointer-events: none;
}

.mainText{
    font-family: 'mclaren';
    font-size: 28px;
    max-width: 569px;
    width: 100%;
    margin: 0;
}

.second_btn{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: row;
    gap: 75px;
}

.link {
    background-color: #FBB271;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    color: white;
    font-family: 'mclaren', sans-serif;
    font-size: 32px;
    max-width: 450px;
    max-height: 51px;
    width: 100vh;
    height: 60px;
    border-radius: 50px;
    cursor: pointer;

    transition: all 0.3s ease-in-out;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.link:hover {
    background: linear-gradient(45deg, #ffae00, #ffee00, #fbb271);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 179, 0, 0.6);
    letter-spacing: 2px;
    color: black;
}

@media screen and (max-width: 480px) {
    .up{
        flex-direction: column;
        text-align: center;
        margin-top: 40px;
    }
    .second_btn{
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }
    .lemonadeLogo{
        max-width: 373px;
        max-height: 560px;
    }
    .container{
        gap: 30px;
    }
    .mainText{
        font-size: 20px;
        max-width: 374px;
    }
    .link{
        max-width: 380px;
    }
}