body {
    background-image: url(../images/austin_skyline.jpg);
    background-position: absolute;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

#style-switch-button {
    position: absolute;
    top: 5px;
    width: 5%;
    height: 3%;
    border: 2px solid;
    border-color: rgb(73, 72, 72);
    background-color: rgb(60, 2, 2);
    color: rgb(229, 226, 226);
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 10px;
    transition: 0.5s;
}

#style-switch-button:hover {
    background-color: rgb(229, 226, 226);
    color: rgb(60, 2, 2);
}

.dropdown {
    position: absolute;
    display: block;
    top: 40px;
    width: 100%;
    height: 4%;
    margin: left;
    text-align: center;
    transition: 0.5s;
}

#dropdown-image {
    position: relative;
    display: block;
    height: 100%;
    width: 2%;
    margin: auto;
    transition: 0.5s;
}

.dropdown-content {
    display: grid;
    position: relative;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    width: 90%;
    height: fit-content;
    margin: auto;
    background-color: #563635;
    border-radius: 0.25rem;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 12px;
    z-index: 1;
    opacity: 0;
    transition: 0.5s;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
}

.dropdown:hover #dropdown-image {
    height: 120%;
}

.dropdown-button {
    padding: 20px 100px 20px 100px;
    width: 25%;
    margin: auto;
    border: 2px inset;
    border-radius: 0.25rem;
    text-align: center;
    text-decoration: none;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 16px;
    line-height: 28px;
    justify-content: center;
    color: #F0ECED;
    transition: 0.5s;
}

.dropdown-button:hover {
    background-color: #B98341;
}

#intro-container {
    position: relative;
    display: flex;
    margin: auto;
    top: 160px;
}

#intro-text {
    position: relative;
    display: block;
    margin: auto;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 140px;
    font-weight: 900;
    text-shadow: 5px 5px 0 #B98341;
    letter-spacing: 5px;
    color: #563635;
    text-align: center;
}

#summary-container {
    position: relative;
    display: grid;
    gap: 10px;
    margin: auto;
    top: 280px;
}

#summary-container a {
    display: block;
    margin: auto;
    text-decoration: none;
    width: 20%;
}

.summary-text {
    position: relative;
    display: block;
    margin: auto;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #B98341;
    border: 2px solid;
    border-color: #B98341;
    background-color: #563635;
    border-radius: 0.25rem;
    text-align: center;
    padding: 12px;
    transition: 0.5s;
}

.summary-text:hover {
    font-size: 30px;
}
