*{
    margin: 0;
    padding: 0;
    list-style: 0;
}

a{
    text-decoration: none;
}

body{
    animation: animBack 20s ease infinite;
    display: flex;
    flex-direction: column;
}

html, body {
    height: 100%;
    margin: 0;
}


@keyframes animBack {
    0% {background-color: aquamarine;}
    20% {background-color: turquoise;}
    40% {background-color: mediumaquamarine;}
    60% {background-color: mediumseagreen;}
    80% {background-color: #98FF98;}
    100% {background-color: aquamarine;}
}

header{
    width: 100%;
    height: 100px;
}
.inner_header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #36454F;
}

.navigation{
    display: flex;
    list-style: none;
    height: 100%;
}

.navigation li{
    margin-left: 20px;
}

.navigation a {
    display: flex;
    align-items: center;
    padding: 0 10px;
    height: 100%;
    font-size: 32px;
    color: white;
}


.top{
    display: flex ;
    width: 100%;
    min-height: 20vh; /* fix this lmao */
    justify-content: center;
    margin: auto;
    color: coral ;

}


.main{
    flex:  1 0 auto;
    padding: 30px 0;
    width: 70%;
    display: flex ;
    min-height: 220px;
    background-color: #36454F;
    align-items: center;
    justify-content: center;
    margin: auto;
    color: white;
    
}

.column1{
    display: flex;
    flex: 0 0 5%;
    max-width: 5%;
    content: "";
    background-color: black;
}

.column2{
    display: flex;
    flex: 0 0 5%;
    max-width: 5%;
    background-color: black;
}

.maintxt h1{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
}

.maintxt{
    width: 60%;
}


.footer{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner_footer{
    display: flex;
    flex-direction: column;
    background-color: black;
    padding: 1rem 0;
    bottom: 0;
    width: 100%;
}
