* {
    font-family: "Montserrat", sans-serif;
    background-color: #185de6;
    color: white;
}
nav {
    position: sticky;
    top: 0;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.socials-img {
    display: flex;
    justify-self: center;
    width: 90%;
}
.aboutus-crest {
    float: left;
}
.aboutus-info {
    text-align: justify;
    line-height: 26px;
    font-size: 17.75px;
    width: 800px;
    margin: auto;
}
.beta-info {
    text-align: center;
}
.beta-button {
    float: right;
}
.beta-password {
    border-radius: 15px;
    border-style: solid;
    border-color: white;
    padding: 5px;
    text-align: center;
}
.beta-password::placeholder {
    color: white;
}
.beta-password:focus {
    outline: none;
}
.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    margin: 0 auto 10px;
    padding: .5em;
    line-height: normal;
}
.button {
    color: #FFFF00;
    margin: 10px;
    padding: 12px 15px;
    border: 2px solid #FFFF00;
    border-radius: 25px;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    overflow:hidden;
    transition: .3s;
    z-index: 1;
    background: #000000;
    cursor: pointer;
}
.button:after {
    position: absolute;
    transition: .3s;
    content: '';
    width: 0;
    left: 50%;
    bottom: 0;
    height: 4px;
    background: #FFFF00;
    right: 0;
    left: auto;
}
.button:hover:after {
    width: 100%;
    left: 0;
}
.header-logo {
    height: 50px;
    width: 50px;
    padding-right: 10px;
}
.header-logo:hover {
    transform: scale(1.1);
    transition: 0.3s;
}
.header-text {
    text-align: center;
}
.centered-text {
    text-align: center;;
}
.calendar-obj {
    display: block;
    border-radius: 10px;
    border: 0;
    width: 1000px;
    height: 750px;
}
.eventcalendar-obj {
    display: none;
    border-radius: 10px;
    border: 0;
    width: 1000px;
    height: 750px;
}
.upload-container {
    border-radius: 25px;
    border-style: dashed;
    border-color: #FFFF00;
    display: none;
    align-items: center;
    align-content: center;
    align-self: center;
}
.upload-image {
    margin: 10px;
    max-width: 150px;
    width: 30%;
    height: 30%;
    border-radius: 10px;
}
.line-break {
    width: 100%;
}