@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

body{
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    height: 100vh;
}

.hero{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-image{
    width: 25rem;
    height: 25rem;
    border-radius:50%;
    overflow: hidden;
    border: 0.5rem solid #0067ab;
    box-shadow: 0px 0px 30px 10px #002289;
}

.title-name{
    font-size: 55px;
    font-weight: 700;
    color: #dadada;

    @media (max-width: 768px){
        font-size: 44px;
        margin-bottom: 0px; /* important */
    }
}

.title-tech{
    font-size: 26px;
    font-weight: 200;
    color: #1075b9;

    @media (max-width: 768px){
        font-size: 22px;
        margin-bottom: 0.5rem;
    }

    @media (max-width: 1023px){
        margin-top: 1rem;
    }
}

.title-info{
    font-size: 18px;
    font-weight: 200;
    color: #cbcbcb;
}

.buttons {
    @media (max-width: 768px){
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    @media (max-width: 1023px){
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
}

.button {
    
    margin-top: 1rem;

    @media (max-width: 768px){
        margin-bottom: 1rem;  
    }

    @media (max-width: 1023px){
        margin-left: 1rem;
        margin-right: 1rem;
    }
}