.main{
    margin: 3% 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #c5c5c5;
    height: 40%;
}

.main h1{
    text-align: center;
}

.main p{
    text-align: left;
    margin: 0 0 0 5%;
    font-size: 120%;
}

#title{
    text-align: center;
    padding: 1%;
}

.main-content{
    padding: 5% 15% 15% 5%;
}

iframe{
    margin: 3% 10%;
}

aside details{
    background-color: #992c4b;
    position: absolute;
    right: 1%;
    width: 30rem;
    top: 70%;
    padding: 1%;
    border-radius: 10px;
    color: #ffffff;
    font-weight: 500;
}

details summary{
    text-align: center;
    background-color: #000000;
    border-radius: 10px;
    width: 80%;
}

ol li{
    background-color: #000000;
    border-radius: 10px;
    width: 90%;
    margin: 3% 0 0 5%;
    padding: .8%
}



@media (max-width: 768px){
    .main{
       height: 60%;
    }

    .main h1{
        font-size: 140%;
        margin: 10% 0 0 0;
    }

    .main p{
        font-size: 90%;
        margin: 5% 0 0 5%;
        text-align: justify;
        width: 90%;
    }

    .main-content{
        display: flex;
        flex-direction: column;
        padding: 10%;
    }

    iframe{
        width: 80%;
    }

    aside details{
        width: 85%;
        position: absolute;
        top: 130%;
        right: 10%;        
    }

    details ol li{
        width: 80%;
    }

    footer{
        margin: 140% 0 0 0;
    }
}