@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins, sans-serif
}



body {

    height: 100vh;

    background-color: rgb(0, 0, 0); 
    display: flex;
    justify-content: start;
    align-items: center;

    flex-direction: column;
}


.imagem-div {

    margin: 10vh 0;
    
    width: auto;
    height: 20vh;
}

.imagem-div img{
    width: 100%;
    height: 100%;
}


.item-container {


    height: 50vh;
    width: 90%;
    

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    gap: 10%;
}


.item {

    border-radius: 20px;
    height: 100%;
    color: rgb(0, 0, 0);
    text-decoration: none;

    width: 70%;
    background-color: rgb(229, 229, 229);

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.3s ease;



    font-size: x-large;
}

.item:hover {
    background-color: rgba(230, 230, 230, 0.718);


}


@media (max-width:768px){




.imagem-div {

    margin: 10vh 0;
    
    width: auto;
    height: 10vh;
}

.imagem-div img{
    width: 100%;
    height: 100%;
}


.item-container {


    height: 50vh;
    width: 90%;
    

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    gap: 10%;
}


.item {

    border-radius: 20px;
    height: 20%;
    color: rgb(0, 0, 0);
    text-decoration: none;

    width: 100%;
    background-color: rgb(229, 229, 229);

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.3s ease;


    padding: 5%;

    font-size: x-large;
}


}