html {
    font-family: "Google Sans";
}

nav {
    a {
        color: #e9e9e9;
        text-decoration: none;
    
        &:hover {
            text-decoration: underline;
        }
    }
    
    padding: 1rem;
    border-bottom: 1px solid gray;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

article {
    margin: 6px;

}

body {
    text-align: center;
    background-color: #212121;
    color: #e9e9e9;
    font-size: 1.5rem;
    margin: 0;
}

p {
    text-align: left;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin: 0 auto;
  }
  
.subtext {
    font-size: 28px;
    margin-top: -24px;
    font-weight: 600;
    color: rgb(54, 54, 54);
}

h1 {
    margin-bottom: 10px;
}

p {
    margin-top: 0;
}

.mlink {
    color: #8974ff;
    text-decoration: none;

    &:hover {
        text-decoration: underline;
    }
}

.container {
    margin-bottom: 20px;
    overflow: auto; 
}

.img-left {
    float: left;
    margin-right: 200px;
    width: 500px;
    border-width: 5px;
    border-style: solid;
    border-radius: 50px;
    border-color: white;
}

.img-right {
    float: right;
    margin-left: 200px;
    width: 500px;
    border-width: 5px;
    border-style: solid;
    border-radius: 50px;
    border-color: white;
}

.framemodalleft {
    display: flex;
    flex-direction: column;
    float: left;
    margin-right: 40px;
}

.framemodalright {
    display: flex;
    flex-direction: column;
    float: right;
    margin-left: 40px;
}

.img-leftmodal {
    display: block;
    margin-bottom: 20px;
    width: 500px;
    border-width: 5px;
    border-style: solid;
    border-radius: 50px;
    border-color: white;
}

.img-rightmodal {
    display: block;
    margin-bottom: 20px;
    width: 500px;
    border-width: 5px;
    border-style: solid;
    border-radius: 50px;
    border-color: white;
}

.clear-floats {
    clear: both;
}

.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    color: #e9e9e9;
  
    display: flex;
    justify-content: center;
    align-items: center;
  
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
  }
  
  .popup-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  .popup-content {
    background: #212121;
    padding: 20px;
    width: 1500px;
    border-radius: 50px;
    position: relative;
    border: solid gray;
    border-width: 5px;
  
    transform: scale(0.8);
    transition: transform 0.3s ease;
  }
  
  .popup-overlay.active .popup-content {
    transform: scale(1);
  }
  
  .close {
    position: absolute;
    right: 10px;
    top: 5px;
    font-size: 20px;
    cursor: pointer;
  }