/* 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 */
#lead {
    margin: 40px ;
}
table {
    margin: 50px;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
}
table, tr, th {
    border: 1px solid gold;
    border-radius: 10px;
  }


/* 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) {

/* contactus */
form {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
}
#col__1{
    align-content: center ;
    width: 500px;
}
#col__2{
    align-content: center;
    justify-content: center;
    width: 500px;    
}
#col__3 {
    justify-content: center;
    width: 1000px;
    margin-top: 100px;
}


/* Footer */

#row{
   display: flex;
   width: 100%;
   justify-content: center;
   align-items: center;
}
#row p {
    max-width: 300px;
    text-align: center;
}
}