body {
    margin: 0;
    padding: 0;

    height: 100vh; /* O body vai pegar 100% da tela do eu navegador. */
    width: 100vw; /* Largura total do seu navegador. */

    background: linear-gradient(75deg, #3debb0 1%, #8956f3 99%);
}

.content {
    height: 520px;
    width: 935px;
    border-radius: 20px;
    overflow: hidden; /* Serve para esconder todos os conteúdos que estavam ultrapassando as medidas pré-definidas pela div global .content */
    
    /* Posicionando a imagem ao centro da tela do navegador */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.navegation {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
    display: flex;
}

.bar {
    width: 70px;
    height: 17px;
    border: 2px solid #fff;
    margin: 6px;
    border-radius: 5px;
    cursor: pointer;

    transition: all 0.4s;
}

.bar:hover {
    background-color: #fff;
}

input[type='radio']{
    display: none;
    outline: none;
}

.slides {
    display: flex;
    width: 500%;
    height: 100%;
}

.slide {
    width: 20%;
    transition: 0.9s;
}

.slide img {
    width: 100%;
    height: 100%;
}

#slide1:checked ~.s1{
    margin-left: 0;
}

#slide2:checked ~.s1 {
    margin-left: -20%;
}

#slide3:checked ~.s1{
    margin-left: -40%;
}

#slide4:checked ~.s1{
    margin-left: -60%;
}

#slide5:checked ~.s1{
    margin-left: -80%;
}

