
@font-face {
  font-family: ut-font;
  src: url(utFont.ttf);
}

body{
    color: aliceblue;
    font-family: ut-font;
    font-size: x-large;
    text-align: center;
}

a{
    color: aqua;
}

.main-container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-content{
    max-width: 700px;
    align-self: center;
    margin-top: 70px;
}

@media screen and (max-width: 1000px){
    .main-content{
        margin-top: 10px;
    }
}

.box{
    border-color: rgb(35, 117, 211);
    border-width: 1px;
    border-style: solid;
    background-color: rgba(9, 1, 53, 0.678);
    padding: 10px;
    margin: 5px;
}

.navigation{
    max-width: 700px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-count: 2;
    justify-content: center;
    margin-top: 30px;
}

.navigation a{
    border-color: rgb(35, 117, 211);
    border-width: 1px;
    border-style: solid;
    background-color: rgb(1, 3, 32);
    padding: 10px;
    width: min(300px, 90vw);
    margin: 10;
    text-decoration: none;
}

.navigation a:hover{
    background-color: rgb(9, 13, 73);
}

.social-links{
    margin-top: 30px;
}

.link{
    width: 200px;
    display: flex;
    flex-direction: row;
    justify-content: baseline;
    align-items: center;
}

.link img{
    width: 30px;
    height: 30px;
    padding: 2px;
    border-width: 2px;
    border-style: solid;
    border-color: rgb(35, 117, 211);
    background-color: aliceblue;
    margin-right: 10px;
}

p{
    margin-bottom: 2px;
    margin-top: 2px;
}

.footer {
    bottom: 5px;
    margin-left: auto;
    width: max-content;
}
