/* ======= GENERAL ======= */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #9fd8e8;
    font-family: Arial, sans-serif;
    text-align: center;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    animation: moveUp 0.8s ease-out;
}

.intro-text h1{
    color: white;
    font-size: 50px;
    font-style: italic;
    letter-spacing: 8px;
    margin-bottom: 20px;
    text-shadow: 3px 3px #ff8b8b;
}

.intro-text h3{
    color: #234;
    font-size: 20px;
    margin-bottom: 40px;
}

/* ======= BUTTON ======= */
#view-my-profile-btn{
    background-color: #ff9c33;
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
}

#view-my-profile-btn a{
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

#view-my-profile-btn:hover{
    background-color: #ff7f00;
}

/* ======= ANIMATION ======= */
@keyframes moveUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ======= TABLET (RESPONSIVE) ======= */
@media (max-width: 768px){

    body{
        padding: 30px 20px;
    }

    .intro-text h1{
        font-size: 38px;
        letter-spacing: 5px;
        margin-bottom: 15px;
    }

    .intro-text h3{
        font-size: 18px;
        margin-bottom: 30px;
    }

    #view-my-profile-btn{
        padding: 14px 30px;
    }

    #view-my-profile-btn a{
        font-size: 17px;
    }
}

/* ======= PHONE (RESPONSIVE) ======= */
@media (max-width: 480px){

    body{
        padding: 20px 15px;
    }

    .intro-text h1{
        font-size: 28px;
        letter-spacing: 2px;
        line-height: 1.3;
    }

    .intro-text h3{
        font-size: 16px;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    #view-my-profile-btn{
        width: 100%;
        max-width: 280px;
        padding: 15px;
    }

    #view-my-profile-btn a{
        display: block;
        font-size: 16px;
    }
}