#backgroundCover {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.popup {
    background: rgb(150, 193, 221);
    padding: 1px;
    width: 0;
    height: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s;
    z-index: 2;
}

.popup-300-200 {
    width: 300px;
    height: 200px;
}

.popup-300-300 {
    width: 300px;
    height: 300px;
}

.popup-400-450 {
    width: 400px;
    height: 450px;
    
}

.popup-500-650 {
    padding-top: 10px;
    width: 500px;
    height: 650px;
    
}

.popup-600-800 {
    width: 600px;
    height: 800px;
    overflow:auto;
}

.popup-600-900 {
    width: 600px;
    height: 800px;
    overflow:auto;
}

#popupContent {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    padding: 10px;
    background: white;
}

#popupTopBar {
    display: flex;
    justify-content: flex-end;
}

#popupBody {
    width: 100%;
    height: calc(100% - 30px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#announcementEditBody{
    width: calc(100% - 20px);
    height: 10em;
    margin: 5px;
    padding: 5px;
    border: 2px solid rgb(121, 121, 122);
    border-radius: 3px;
}

@media (max-width: 600px) {
    .popup-300-300 {
        width: calc(100% - 40px);
    }
    
    .popup-400-300 {
        width: calc(100% - 40px);
    }

    .popup-600-800 {
        width: calc(100% - 40px);
    }
}
