.window {
    display: flex;
    flex-direction: column;
    min-height: 100vh
}

#header {
    margin: 2rem 7rem 0.4rem;
    overflow: hidden;
}

#topper {
    width: 100%;
    height: 100%;
}

#rest {
    margin: 0rem 0rem 2rem 0rem;
    width: 100%;

    display: flex;
    flex-direction: row;
}

#left-col {
    margin: 0.4rem 0.4rem 0rem;
    display: flex;
    flex-basis: 20%;
    flex-direction: column;
}

#middle-col {
    display: flex;
    flex-basis: 50%;
    flex-direction: column;
}

#main {
    display: flex;
    color: var(--TEXT-COLOR);
    flex-direction: column;
    padding: 1rem;
}

#main p{
    font-size: 20px;
}

#main h1 {
    text-align: center;
    font-family: "Hi Melody", sans-serif;
    width: 100%;
}

#sub-main {
    display: flex;
    flex-direction: row;
}

#sub-main #img-container {
    width: 50%;
    height: 100%;
}

#right-col {
    margin: 0.4rem 0.4rem 0rem;
    display: flex;
    flex-basis: 30%;
    flex-direction: column;
}

#nav {
    background-image: url("../assets/green-stars.jpg");
    background-size: cover;
}

#img {
    background-size: cover;
    max-width: 100%;
    max-height: 100%;
}

#img-container {
    overflow: hidden;
    display: flex;
}

#events {
    width: 100%;
    height: 100%;
    flex-direction: column;
}

#events .sub-container{
    display: flex;
    flex-direction: column;
    flex: 1;
}

ul {
    line-height: 2rem;
}

#update {
    display: flex;
    flex-basis: 10%;
}

#update .sub-container {
    padding: 0.5rem;
}

#frog {
    display: flex;
    flex-basis: 30%;
}

#spotify {
    display: flex;
    flex-direction: column;
}

#spotify iframe {
    width: 95%;
    margin-top: 1rem;
    margin-left: auto;
    margin-right: auto;

    background-color: var(--CONTAINER-GREEN);
    border: solid;
    border-color: var(--CONTAINER-BORDER);
    border-width: 0px;
    border-radius: 10px;
    background-color: #205840;
    margin-bottom: 0.4rem;
}

info-panel {
    width: 100%;
    padding: 0.5rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

@media (max-width: 768px) {
    #right-col {
        display: none;
    }

    #sub-main {
        display: none;
    }

    #middle-col {
        flex-basis: 80%;
        padding-right: 0.5rem;
    }
}
