body {
    background-color: #ede1d1;
    font-family: 'Montserrat', sans-serif;
    color: #525e75;
    margin: 0;
    padding: 0;
}

h2, h3 {
    color: #525e75;
    font-weight: 700;
}

h2 {
    text-decoration: underline;
}

nav {
    display: flex;
    justify-content: center;
    border: 2px solid #92ba92;
    border-radius: 5px;
    margin-bottom: 10px;
}

a {
    color: #78938a;
    text-decoration: none;
}

a:hover {
    cursor: pointer;
    text-decoration: underline;
}

a:visited {
    color: #bc7af1;
}

p {
    font-size: 1.15em;
}

#introPara {
    font-style: italic;
}

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#page-container {
    position: relative;
    min-height: 100vh;
}

#main {
    margin: 0 auto;
    max-width: 640px;
    padding-bottom: 2.5rem; /*footer height*/
}

.img-container {
    position: relative;
    width: 100%;
}

.selfie {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    box-shadow: 0 4px 8px 0 #525e75, 0 6px 20px 0 #525e75;
    transition: 1s ease-in-out;
    background-color: #78938a;
    border-radius: 10px;
}

.img-container:hover .overlay {
    opacity: 1;
}

.img-text {
    color: #ede1d1;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.funList {
    font-size: 1em;
    font-style: italic;
    list-style: circle;
}

iframe {
    box-sizing: border-box;
    border: 10px groove #92ba92;
    border-radius: 25px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 640px;
    margin-bottom: 10px;
}

input:hover {
    cursor: pointer;
}

input[type="text"] {
    border-radius: 5px;
}

.radio-btns {
    margin: 20px auto;
}

button {
    padding: 5px 15px;
    border-radius: 1em;
    color: #525e75;
    background-color: #eaf8ea;
}

button:hover {
    background-color: #525e75;
    color: #ede1d1;
    cursor: pointer;
}

#footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    background-color: #525e75;
    color: #ede1d1;
}

.footer-link, .footer-link:visited {
    color: #ede1d1;
}

.fa-github, .fa-heart, .fa-linkedin {
    color: #ede1d1;
    font-size: 24px;
    transition: transform 0.3s ease-in-out;
}
  
.fa-github:hover, .fa-linkedin:hover {
    transform: rotateY(360deg) scale(1.4);
}

.fa-heart:hover {
    transform: scale(1.25);
    color: #bc7af1;
}

.travels-main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

th, td {
    border: 1px solid #525e75;
    color: #525e75;
}

li {
    margin-bottom: 10px;
}

li button {
    margin-left: 20px;
}