
body{
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    margin: 0px;
    height: 100vh;
    background: radial-gradient(ellipse at bottom, var(--bgColor) 0%, var(--bgColor2) 100%);
    animation: 1s ease-out var(--delay) 1 transitionAnimation; /* duration/timing-function/delay/iterations/name */
    animation-fill-mode: forwards;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    margin-top: -20px ;
    background-color: #DD7D24;
    

}

 hr.footer-line{
    width: 100%;
    height: 1px;
    border: none;
   background-color: #ffa500;
}

.body{
    display: flex;
    flex-direction: column;
    margin: auto;
    padding-top: 30px;
    text-align: left;
    align-items: center;
    height: 100vh;
    font-size: larger;
    font-weight: bold;
    background-color: #DD7D24;
    
}


.head{
    
    height: 56px;
    width: 70px;
    border: 0px ;
    margin-left: 8px;
    padding-top: 8px;
    align-self: flex-start;
  
}
.head:hover{
    box-shadow: 0 0 0 0;
}

img{
    image-rendering: pixelated;
    object-fit: cover; 
    
}

img.new{

    width: 80%;
  max-width: 70vh;
  height: auto;
  image-rendering: pixelated;
  object-fit: cover;
  transition: all 0.1s ease-in-out;
}


.button{
   
    
    width: 300px;
    background-color: rgba(255, 255, 255, 0);
    border-radius: 5px;
    margin: 10px;
    
}



a{
    text-decoration: none;
    color: #DD7D24;
    display: flex;
    justify-content: left;
    align-items: center;
}

i{
    padding-right: 20px;
}

h1{
    font-size: 2.5rem;
    margin-top: 20px;
    margin-bottom: 0px;
    color: white;
}



h6{
    color: rgb(124, 126, 126);
    text-align: center;
    padding: 1px;
   
    font-size: 1rem;
}



.footer, h6{
    margin: 0px;
    padding: 10px;
    font-size: 1rem;
}


.buttons{
    background-color: rgb(219, 213, 213);
    border-radius: 10px;
    padding: 2px;
    margin: 10px;
}

:hover.buttons{
    box-shadow: 0 0 10px 0 #ffa500;
    transition: all 50ms ease-in-out;
}

@media screen and (max-width: 600px) {
   

    h1 {
        font-size: 1.8rem;
    }

    .buttons {
        width: 80%;
        
    }

    .body {
        padding-top: 20px;
        
        font-size: medium;
    }
}