body {
    background-color: #f8f8ff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: Arial, Helvetica, sans-serif;
    list-style: none;
    
}

h2 {
    font-size: 50px;
    color: #000;
    align-self: center;  
}

.content-section {
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: auto;
    align-items: center;
    padding-top: 50px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
}

.social-link {
    color: #555;
    text-decoration: none;
    font-weight: bold;
    font-size: 25px;
    margin: 10px;
}

.social-link a {
    color: #555;
    text-decoration: none;
    font-weight: bold;
    font-size: 25px;
    margin: 10px;
    transition: 0.3s;
}

.social-link a:hover {
    color: #000;
    font-size: 30px;
}

.flex-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

iframe {
    margin: 10px;
}

.footer {
    width: 100vw;
    height: 30px;
    background-color: #08224aff;
    color: #f8f8f8;
    padding: 5px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 800px) {
    html > * {
      display: none;
    }
    html:before {
      content: "This website is not optimized for mobile devices. Please view on a desktop or laptop computer.";
      display: block;
      padding: 1em;
      background-color: #f2f2f2;
      color: #333;
      font-size: 1.2em;
      text-align: center;
      font-family: Arial, Helvetica, sans-serif;
    }
}