body{
    background-color: #212121;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color:white;
}

img{

}
.wrapper{
    margin: auto;
    width: 70%;
    max-width: 1024px;
}

.header{
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
}
.header > *{
    flex: 1;
}
.logo{
    text-align: left;
}
.nav-spacer{    
    height: 100%;
    width: 100%;
    display: flex;
}
nav{
    height: 100%;    
}
.nav-list{
    vertical-align: bottom;
    display:flex;
    /* gap: 1rem; */
}
.nav-list a{
    color:white;
    text-decoration: none; 
}
.nav-list li{
    margin: 0 0 0 0;
    padding: 0;
    width: 100px;
    list-style: none;
    flex-grow: 1;
    flex-shrink: 1;
}
.contactbutton{
    border-radius: 25px;
    background: #FF5E00;
    background: linear-gradient(0deg,#FF9210, #FF5E00);
    padding: 10px;
    width: 200px;
}
.intro-image{
    padding: 0 0 0 0;
    height: 200px;
    /* width: 1024px; */
    overflow: hidden;
}
.intro-image img{
    object-fit: cover ;  
}
.content{
    padding: 50px 10px 0 10px ;
    border-style: solid;
    border-color: white;
    border-width: 0 0 0 0;
}
.content p{
    padding: 50px 0 0 0;
    text-align:justify;
}
.footer{
    text-align: center;
    color:grey;
}
.footer a{
    color:#474747;
    text-decoration: none;
}