
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

body, 
header, 
main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

body {
    font-family: "Roboto", sans-serif;
    color: white;
    <!--background: linear-gradient(to right,#7a8ac1,#5A6d9c);-->
    margin: 0;
    height: 100vh; 
    justify-content: center;
    gap: 20px;

figure {
    overflow: hidden;
    width: 300px;
    height: 300px;
    border-radius: 0%;
    margin-bottom: 10px;
    
    img{
        width: 100%;
        height: auto;
        object-fit: cover;

    }
}


H1 {
    font-size: 24px;
    color: #333;
}
H2{
    color: #333;
    font-size: 20px;
    margin: 0 0 5px 0;
    font-weight: 400;
    text-align: center;
    max-width: 500px;
}

H3{
    color: #333;
    font-size: 18px;
    margin: 0 0 5px 0;
    font-weight: 400;
    text-align: center;
}


main{
    gap: 20px;
    button{
        font-family: "Roboto", sans-serif;
        font-weight: 400;
        font-size: 25px;
        width: 400px;
        height: 70px;
        background-color: #333;
        color: #FFFFFF;
        border: none;
        border-radius: 5px;
        &:hover{
            cursor: pointer;
            background-color: #ffffff00;
            border: 1px solid #333;
            color: #333;
        }
    }
}

footer{
    color: #656363;
}

}
