* {
    box-sizing: border-box;
}
body {
    background-color: #000000;
    margin: 0;
    padding: 0;
    font-size: 14px;
} 

.script {
  font-family: "Dancing Script", cursive;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.background{
    background-image: url('../images/background-blur.jpg');
    background-size: 100% auto;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}
.overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 20px;
    z-index: 2;
}

.logo-index {
     /* width: calc(150px * 2.64); */
    width: 396px;
    height: 150px;
    background-image: url('../images/AndrewBrugger-Logo.png');
    background-size: 385px;
    background-repeat: no-repeat;
    background-position: center;
    margin: 15% auto 0 auto;
}

.logo-top {
    width: calc(75px * 2.64);
    height: 75px;
    background-image: url('../images/AndrewBrugger-Logo.png');
    background-size: cover;
    background-repeat: no-repeat;
}
.header {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.name {
    text-align: center;
    font-size: 1.5em;
    color: #FFFFFF;
}
.menu {
    
}
.menu ul {
    display: flex;
    flex-direction: row;
    justify-content: right;
    list-style-type: none;
    margin: 0;
    padding: 0;
    
}
.menu ul a {
    text-decoration: none;
    padding: 10px;
    color: #FFFFFF;
    font-size: 1.7em;
    margin: 0 15px;
    margin-bottom: 1px;
}
.menu ul a:hover{
    margin-bottom: 0;
    border-bottom: solid 1px #FFFFFF;
}
.menu ul .selected {
    margin-bottom: 0;
    border-bottom: solid 1px #FFFFFF;
}
.description {
    margin: 75px auto;
    width: 500px;
}
.description p {
    font-size: 1.3em;
    color: #FFFFFF;  
    text-align: center;
}

/* Responsive Layout */
@media screen and (max-width: 1100px) {
    .background{
        background-size: cover;
        background-position: center;
    }
    .header{
        justify-content: center;
    }
    .name{
        display: none;
    }
    .logo{
        margin: 5% auto 0 auto;
    }
    .description{
        width: 400px;
    }
}
@media screen and (max-width: 775px) {
    .header {
        flex-wrap: wrap;
    }
}
