/* Presets */
html {
    box-sizing: border-box;
    margin: 0;
    background-color: black;
    color: whitesmoke;
    font-family: Arial, Helvetica, sans-serif;
}
body {
    margin: 0;
    text-align: center;
}

nav {
    background-color: whitesmoke;
}

hr {
    background-color: gold;
    padding: 5px 0px;
    margin: 0 0 50px 0;
}
form {
    padding-bottom: 100px;
}
label {
    cursor: default;
}
img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 20px;
    width: 100%;
    max-width: 570px;
}

ul {
    padding: 0;
}
ol {
    padding: 0;
}

/* Typography */

h1, h2, h3, p {
    margin: 0;
    line-height: 1.2;
}

h1, h2, h3 {
    font-family: Impact, 'Arial Narrow Bold', sans-serif;
    letter-spacing: .1em;
    font-weight: lighter;
}

p {
    margin-left: auto;
    margin-right: auto;
    width: 300px;
    padding: 20px;
}

p:last-child {
    margin-bottom: 0;
}

.btn__group {
    color: whitesmoke;
    text-shadow: 1px 1px 2px black;
    background-color: gold;
    text-decoration: none;
    padding: 0.1em 5px;
    margin: 1em;
    border-radius: 10px;
    
}
.btn__group:hover,
.btn__group:focus-visible {
    text-decoration: underline;
}

/* contact us Content */
#col__1{
    padding: 50px 0px;
}
.col__right {
    margin: 0px 20px 0px 20px;
}

.col__right p {
    margin-left: auto;
    margin-right: auto;
    width: 330px;
    padding: 10px;
}
.bio__img {
    width: 100%;
    max-width: 350px;
    height: auto;
    padding: 0px 0px 50px;
    margin: auto;
}
#get__info {
    margin: 40px;
}


/* About us & Contact us content */
#row {
    padding-bottom: 50px;
}
.privacy {
    color: gold;
    text-decoration: none;
}
#social ul {
    display:flex;
    list-style: none;
    margin: 0px;
    padding: 0px;
    justify-content: center;
}
#social a {
    display: inline-block;
    padding: 1.4em;
    margin: 5px;
    color: white;
    text-decoration: none;
  }

#facebook {
    border-radius: 15px;
    width: 30px;
    height: 30px;
    padding: 0;
} 
#instagram {
    border-radius: 15px;
    height: 30px;
    width: 30px;
    padding: 0;
}
#facebook:hover {
    border-radius: 25px;
}
#instagram:hover {
    border-radius: 25px;
}




/* Responsive Query for desktop */

@media only screen and (min-width: 1000px) {

    #col__1 {
        display: flex;
        justify-content: center;
        margin-left: 1vw;
    }
    
    .col__right p {
    margin-left: auto;
    margin-right: auto;
    margin: 40px;
    width: 30em;
    }
    
#name__1 {
    padding-top: 20px;
    width: 100%;

}
.bio__img {
    max-width: 480px;
}
    
/* Footer */

#row{
   display: flex;
   width: 100%;
   justify-content: center;
   align-items: center;
}
#row p {
    max-width: 300px;
    text-align: center;
}
}