html{
    height: 100%;
}
body{
    margin: 0;
    padding: 0;
    background-image: url('images/back.png');
    background-position: center center;
    background-size: cover;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 150px;
}

img{
    max-width: 90%;
}

.logo{
    max-width: 200px;
}

.text{
    max-width: 500px;   
}

@media (max-width: 667px) {
    body{
        gap: 50px;
    }
    .text{
        max-width: 80%;
    }
  }