:root {
    background-color:rgb(32, 32, 48);
    color: white;
}

header {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: bold;
    font-size: 80px;
    text-align: center;
    padding: 10px;
    color: red;
}

section a {
    color: gold;
}

section a:hover {
    color: red
}

.parent-container {
    display: flex;
    color: rgb(255, 255, 255);
    
}


.flex-aside {
    width: 400px;
    height: 300px;
    margin: 5px;
    border-radius: 20px;
    
}

.flex-container2 {
    display: flex;
    flex-direction: row;
    text-align: center;
    padding: 20px;
    gap: 100px;
}

iframe {
    width: 100%;
    height: 400px;
    margin-top: 80px;
    border-radius: 40px;
    border: 0;
}

h2 {
    color: rgb(94, 203, 249);
}

.sub {
    font-size:smaller;
    color: blueviolet;
 }

.sec {
    display: inline-block;
    margin: 5px;
    padding-top: 150px;
    font-weight: lighter;
    text-align: center;
    width:200px;
    height: 200px;
}

table {
    width: 600px;
}
td img {
    height: 150px;
    width: 200px;
    border-radius: 30%;
}

td {
    padding: 5px;
}

.nav-container {
    display: flex;
    justify-content: space-around;
    margin: 5px;
    gap: 5px;
}

.nav-item {
    position: relative;
    width: 20%;
    overflow: hidden;
}

.nav-item img {
    width: 100%;
    height: 100px;
    border-radius: 25px;
}

.overhead-txt {
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    font-weight: bolder;
    
}

.overhead-txt:hover {
    background-color: purple;
    font-size: larger;
    color: gold;
    border-radius: 25px;
}

footer {
    text-align: center;
    padding: 1px;
    color: white;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

footer a {
    color: gold;
}
footer a:hover {
    color: red;
}

