* {
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100dvh;
    padding: env(safe-area-inset-top) 0 env(safe-area-inset-bottom); 
    overflow: auto;
}

.top {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.heading {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 48px;
    text-align: center;
    color: #000;
}

.text {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 20px;
    text-align: center;
    color: #000;
}

.desktop__animation {
    width: 290px;
    height: 410px;
}

.mobile__animation {
    display: none;
    width: 278px;
    height: 391px;
}

.bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.links {
    display: flex;
    gap: 20px;
}

.button {
    cursor: pointer;
    text-decoration: none;
    border-radius: 100px;
    padding: 15px 50px;
    background: #000;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    color: #fff;
    transition: background .3s ease;
}

.button:hover {
    background: #303030;
}

.mail {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: #777;
}

.mail a {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: #777;
}

@media (max-width: 480px) {
    
    body {
        justify-content: space-between;
        min-height: 100dvh;
        padding: env(safe-area-inset-top) 15px env(safe-area-inset-bottom);
    }

    .top {
        padding-top: 30px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .heading {
        font-size: 38px;
    }

    .text {
        font-size: 16px;
    }

    .desktop__animation {
        display: none;
    }
    
    .mobile__animation {
        display: block;
    }

    .bottom {
        padding: 0 30px 30px;
    }

    .links {
        flex-direction: column;
    }

    .button {
        font-size: 14px;
    }

    .button:hover {
        background: #000;
    }
}