*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body{
    height: 100%;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.container{
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 4%;
}

header{
    padding: 10px 0;

}

header > .container{
    display: flex;
    align-items: center;
    justify-content: space-around;


}
header .logo{
    width: 100%;
}

header .logo img{
    width: 100%;
    max-width: 100px;
}

.day{
    width: 70px;
    height: 20px;
    border-radius: 1111px;
    transition: 1s;
    background-position: center;
    background-size: cover;
}
.ball{
    width: 20px;
    border-radius: 111px;
    cursor: pointer;
    height: 20px;
    background-position: center;
    background-size: cover;
    transition: 1s;
}

.other{
    margin-left:71% !important;
    transition: 1s !important;
}

section{
    width: 100%;
    text-align: center;
}

section h2{
    color:green;
    text-transform: uppercase;
    padding: 20px;
}

section form{
    width: 50%;
    margin: 0 auto;
}

section form input{
    width: 100%;
    padding: 5px;
    font-size: 18px;
    outline: none;
    margin: 0 auto;
}

section form  p{
    padding: 10px 0;
    text-align: start;
    font-weight: lighter;
    text-transform: uppercase;
}

section form button{
    margin-top: 40px;
    width: 40%;
    padding: 5px 8px;
    font-size: 20px;
    color: white;
    background-color: green;
    border: none;
    cursor: pointer;
}

.btn{
    width: 100%;text-align: center;
}
.btn button{
    margin-top: 40px;
    width: 40%;
    padding: 5px 8px;
    font-size: 20px;
    color: white;
    background-color: green;
    border: none;
    cursor: pointer;
}
.table{
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.side{
    width: calc(100% / 2);
    background-color: rgb(0, 82, 27);
    text-align: start;
    padding: 5px;
    font-size: 18px;
    color: #fff;
    border: 1px solid #ccc;

}

.aside{
    width: calc(100% / 2);
    background-color: rgb(0, 172, 57);
    text-align: end;
    padding: 5px;
    font-size: 18px;
    color: #fff;
    border: 1px solid #ccc;

}

@media screen and (max-width: 900px) {
    section form{
        width: 100%;
    }

    section form button{
        width: 70%;
    }.btn button{
        width: 80%;
    }
    
}

@media print {
    button{
        display: none;
    }
    header .logo img{
        width: 50%;
    }


    .day{
        display: none;
    }
    form{
        display: none;
    }

section h2{
font-size: 18px;
    padding: 5px 0;
}

section > .container > h2{
    display: none;
}

section form{
    width: 60%;
}

    
  }