/* Styles for my travel website */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*! Generated by Font Squirrel (https://www.fontsquirrel.com) on December 6, 2023 */



@font-face {
    font-family: 'exothin_italic';
    src: url('exo-italic-variablefont_wght-webfont.woff2') format('woff2'),
         url('exo-italic-variablefont_wght-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background: rgb(108, 108, 238);
}

#wrapper {
    width: 940px;
    margin: 20px auto;
    background: rgb(255, 255, 146);
}

header {
    background:rgb(108, 108, 238);
    margin-bottom: -20px;
}

.social {
    position: fixed;
    top: 300px;
    right: 5px;
    list-style-type: none;
    background: #eee;
}

.social li {
    padding: 5px;
}

/* .social:nth-child(1) {
    width: 50px;
} */

#logo {
    display: inline;
    margin-left: -50px;
}

nav {
    height: 50px;
    line-height: 50px;
    background: #eee;
    margin-bottom: 20px;
}

nav li {
    list-style: none;
    float: left;
    width: 313.33px;
    text-align: center;
    position: relative;
}

nav a {
    text-decoration: none;
    color: black;
    display: block;
}

nav a:hover {
    /* background: #79a5d3; */
    background: blue;
    color: #eee;
}

.drop-down {
    display: none;
}

nav li:hover .drop-down {
    display: block;
    position: absolute;
    top: 50px;
    /* z-index: 1; */
    width: 313.33px;
    background: #eee;
}

/* nav a:hover {
    background: #79a5d3;
} */
/* .home nav li:nth-child(1) a,
.services nav li:nth-child(2) a,
.contact nav li:nth-child(3) a {
    background: #79a5d3;
    color: #eee;    
} */


form {
    max-width: 580px;
    margin-bottom: 20px;
}

fieldset {
    padding: 10px;
    /* border: 1px dotted #800; */
}

legend {
    font-style: italic;
    font-size: 1.3em;
    padding: 0 5px;
}
label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 1.1em;
    color: #555;
}

input {
    margin-bottom: 5px;
    height: 30px;
    width: 100%;
}

input[type="submit"] {
    width: auto;
}

textarea {
    width: 100%;
    height: 120px;
    margin-bottom: 10px;
}

main {
    width: 570px;
    float: left;
    padding: 5px;
}

.contact main {
    /* width: 100%; */
    margin: 20px auto;
    float: none;
    background: #eee;
}

figure {
    margin-bottom: 10px;
}
figcaption {
    background: #eee;
    margin-top: -4px;
}

aside {
    width: 330px;
    padding: 5px;
    background: #eee;
    float: right;
    margin-top: 20px;
    margin-right: 5px;
}


footer {
    height: 50px;
    line-height: 50px;
    border-top: 1px dotted #666;
    clear: both;
    font-size: .9em;
}

footer li {
    list-style-type: none;
    float: left;
    margin-left: 40px;
    color: #666;
}

footer a {
    color: #666;
}

footer img {
    margin-top: 10px;
}

/* ALL of the images will have a max-width of 100% */
img {
    max-width: 100%;
}


/* img + p {
    margin: 15px 0 20px 0;
} */

/* figure img {
    margin: 0 auto;
} */

/* TYPOGRAPHY */

h1, h2, h3 {
    margin-bottom: 8px;
    font-family: 'exothin_italic';
    line-height: 1.2;
    color: #555;
}

h1 {
    font-size: 2.2em;
    text-align: center;
}
h2 {
    font-size: 2em;
}

h3 {
    font-size: 1.78em;
    font-weight: 200;
}


p {
    margin-bottom: 20px;
    line-height: 1.5;
}

aside p {
    font-size: .9em;
}