body{
    background-color: black;
    font-family: monospace;
}
.container{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 85vh;
    width: 70vw;
    margin: 7vh auto;
    background-color: #000000;
    border-radius: 10px;
    box-shadow: 0 0 20px #decb8d;
    color: #decb8d;
    border-style: groove;
}
.header{
    display: flex;
    flex-direction: row;
    position: relative;
    align-items: center;
    width: 100%;
    color: black;
    background-color: #decb8d;
    border-bottom: #121212 solid 2px;
    border-radius: 10px 10px 0 0;
}
.headtext{
    display: flex;
    flex-direction: row;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.logo{
    border-style: double;
    border: #121212 solid 2px;
    margin: 5px;
}
.logo img{
    display: flex;
    flex-direction: row;
    width: 70px;
    height: 70px;
    margin: 10px;
    background-color: #decb8d;
    border-radius: 50%;
    transform: rotate(-25deg);
}
.links:hover{
    color: #ffffff;
    text-decoration: underline;
}
.links{
    color: #decb8d;
    text-decoration: none;
}
.links:visited{
    color: #decb8d;
    text-decoration: none;
}
