* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a
{
    color: #00a378;

}

h1
{
    font-family: charm;
}

header 
{
    background-image: linear-gradient(to right,#f3d77e,#f69a32);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px; 
    background-color: #fff;
    border-bottom: 5px solid black;
    z-index: 1000;
}

#selfie
{
    height: auto;
    width:25%;
}
.body-stuff
{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.5); 
    padding: 20px;
    border: 7px solid black;
    border-radius: 20px 0 20px 0;
}

.head-container
{
    width: 100%;
}

.inner-head-container 
{

    display: flex;
    justify-content: space-between; 
    align-items: center;
    height: 100%;
    padding: 0 20px; 
}

.body-container 
{
    display: flex;
    margin-top: 80px; 
    width: 100%;
}

.side-menu 
{
    background-image: linear-gradient(#f3d77e,#f69a32);
    position: fixed;
    top: 80px; 
    left: 0;
    width: 250px; 
    height: calc(100vh - 80px);
    background-color: #f4f4f4;
    border-right: 5px solid black;
    overflow-y: auto;
    overflow-x: hidden; 
    display: flex;
    padding-top: 15px;
    text-align: center;
    flex-direction: column;
    justify-content: space-around; 
}

.side-link 
{
    display: flex;                  
    align-items: center;            
    justify-content: center;        
    text-align: center;
    padding: 15px;
    width: 100%;
    white-space: nowrap;            
    height: 60px;   
    border-bottom: 2.5px solid black;
}

.main-body 
{
    background-image: url("Images/insideshiny.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-left: 250px; 
    padding: 20px;
    min-height: calc(100vh - 80px); 
    overflow-y: auto; 
    width: calc(100% - 250px); 
}

footer 
{
    background-image: linear-gradient(to right,#f69a32,#f3d77e);
    text-align: center;
    padding: 20px;
    background-color: #f4f4f4;
    border-top: 5px solid black;
}

#slideshow-container {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 500px; 
    overflow: hidden;
}

#social
{
    color: #0c09d8;
}

.slides {
    display: flex;
    width:auto;
    height: auto;
    justify-content: center;
    
}

#logo
{
    height: 100px;
    width: 100px;
}