*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Inter , system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}


html , body{
    height: 100%;
    width: 100%;
}


.container{
    height: 100vh;
    width: 100%;
}

.container .main{
    padding: 0.5rem;
    width: 75%;
    margin: auto;
    background-color: whitesmoke;
    height: 100%;


  
    
}

.main header{
    /* background-color: white; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.2rem 0.2rem 1rem;
    gap: 1rem;
    border-bottom: 2px solid rgb(236, 224, 224);
}

.main header strong{
    color: gray;
}


.main .content{
    display: flex;
    /* background-color: yellow; */
    flex-direction: column-reverse;
    align-items: start;
    justify-content: start;
    padding-top: 1rem;
    height: 100%;
    gap: 0.2rem;
   
}

.content embed{
    flex:1
}


.main footer{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.main .content a{

    text-decoration: none;
    background-color: rgb(220, 213, 213);
    color: black;
    border-radius: 0.3rem;
    padding: 0.2rem;
    font-size: smaller;

    
}

.container .sidebar-media{
    position: fixed;
    top: 40%;
    left: 0%;
    z-index: 3;
    display: flex;
    flex-direction: column;
}



.sidebar-media span a img{
     width: 7%;
}