* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
body {
    height: 100vh;
    color: #b4b3b3;
    background: -webkit-linear-gradient(rgb(48, 57, 38), rgb(62, 91, 29));
}
.p span {
    font-size: 20px;
}

/*   DESKTOP   */

.content {
    display: flex;
    flex-direction: column;
    gap: 200px;
}
h1 {
    text-align: center;
    font-size: 150px;
}
.h2 {
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 25px;
    margin: 20px 15px 20px 15px;
}
.p {
    display: flex;
    justify-content: center;
    text-align: center;
    border-top: 2px solid #b4b3b3 !important;
    margin: 0 15px 0 15px;
    padding: 30px 0 0 0;
}
.button {
    display: flex;
    justify-content: center;
}
.button button {
    background: transparent;
    border: none;
    border-bottom: 2px solid #b4b3b3 !important;
    padding-bottom: 10px;
    transition: 0.3s;
}
.button button:hover {
    cursor: pointer;
    transform: translateY(-6px);
    padding-bottom: 12px;
}
.button a {
    text-decoration: none;
    color: #b4b3b3 !important;
    font-size: 15px;
}

/*   MEDIA QUERY   */

/*  tablet  */

@media screen and (max-width: 760px) {
    .content {
        display: flex;
        flex-direction: column;
        gap: 100px;
    }
    h1 {
        text-align: center;
        font-size: 150px;
    }
    .h2 {
        display: flex;
        justify-content: center;
        text-align: center;
        font-size: 25px;
        margin: 20px 15px 20px 15px;
    }
    .p {
        display: flex;
        justify-content: center;
        text-align: center;
        border-top: 2px solid black;
        margin: 0 15px 0 15px;
        padding: 30px 0 0 0;
    }
    .button {
        display: flex;
        justify-content: center;
    }
    .button button {
        background: transparent;
        border: none;
        border-bottom: 2px solid black;
        padding-bottom: 10px;
        transition: 0.3s;
    }
    .button button:hover {
        cursor: pointer;
        transform: translateY(-6px);
        padding-bottom: 12px;
    }
} 

/*  mobile  */
    
@media (max-width: 500px) {
    body {
        height: 180vh;
        color: #b4b3b3;
        background: -webkit-linear-gradient(rgb(48, 57, 38), rgb(62, 91, 29));
    }
    .content {
        display: flex;
        flex-direction: column;
        gap: 60px;
    }
    h1 {
        text-align: center;
        font-size: 80px;
        margin: 70px 0 0 0;
    }
    .h2 {
        display: flex;
        justify-content: center;
        text-align: center;
        margin: 30px 8px 0 8px;
        font-size: 20px;
    }
    .p {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        font-size: 20px;
        margin: 20px 10px 20px 10px;
        padding: 20px 0 0 0;
        border-top: 2px solid black;
    }
    .button {
        display: flex;
        justify-content: center;
    }
    .button button {
        background: transparent;
        border: 2px solid #b4b3b3;
        color: white;
        border-radius: 50px;
        padding: 10px 20px;
    }
    .button a {
        text-decoration: none;
        color: white;
    }
    .button button:active {
        border: 2px solid grey;
    }
    .button button:active a {
        color: gray;
    }
}