* {
    margin: 0;
    padding: 0;
    font-family: "Protest Revolution", sans-serif;
    font-weight: 400;
    font-style: normal;
}

body {
    margin: 0 auto;
    background: url('resources/bg\ medium.png') no-repeat;
    background-size: cover;
    width: 90%;
    height: 100vh;
    display:flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: hidden;
}

canvas {
    position: absolute;
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
}

header {
    margin-top: 10px;
    width: 100%;
    text-align:center;
}

h1 {
  color: #fffe;
  text-shadow: 0 0 2px black, 0 0 6px black, 0 0 30px black;
}

h2 {
    font-size: 25px;
    color:#fffa;
    text-shadow: 0 0 6px black, 0 0 30px black;
}

main {
    margin-bottom:10px;
    flex:1;
    width: 100%;
    display: flex;
}

div {
    border-radius: 20px;
    padding: 20px;
    margin: 5px;
    box-shadow: 2px 2px 4px #000c;
    text-align:center;
}

#aboutDiv {
    
    text-align:center;
    display: flex;
    align-items: center;
}

#aboutDiv div {
    display:flex;
    flex-direction: column;
    border-radius: 0px;
    padding: 0px;
    padding-right: 20px;
    margin: 0px;
    box-shadow: 2px 2px 4px #0000;
    flex: 1;
    min-height: 100px;
}

#aboutDiv img {
    border-radius: 100%;
    max-height: 200px; 
    height: 10vw;
    padding: 0px;
    margin: 0px;
    box-shadow: 2px 2px 4px #000c;
    text-align:center;
    display: flex;
    align-items: center;
}

#commDiv {
    border-radius: 20px;
    padding: 20px;
    margin: 5px;
    box-shadow: 2px 2px 4px #000c;
    text-align:center;
    
}

#commDiv a {
    animation-name: f;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

@keyframes f {
    0% {text-shadow: 1px 1px 20px #2a2b1aaa; color: #A5A671;}
    50% {text-shadow: 1px 1px 30px #fff; color: #2a2b1aaa;}
    100% {text-shadow: 1px 1px 20px #2a2b1aaa; color: #A5A671;}
}

a {
    width: 100%;
    font-size: 40px;
    color: #A5A671;
    text-decoration: none;
    text-shadow: 0 0 2px black, 0 0 6px black, 0 0 30px black;
}

a:hover {
    color: #fffe;
}

#left {
    flex:0 0 20%;
    background: #2a2b1aaa;
    width: 20%;
    min-width: 200px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

#right {
    flex:1;
    background: #5c5e2daa;
    display: flex;
    flex-direction: column;
}

#right div {
    flex:1;
    display: flex;
    align-items: center;
}

.link-button {
    flex:1;
    padding: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 10px;
    background: #5c5e2daa;
    border: none;
    border-radius: 5px;
}

.link-button:hover {
    background: #5c5e2d; 
    box-shadow: 1px 1px 2px #000c;   
}

.link-button a {
    width: 80%;
    font-size: 20px;
    color:#A5A671;
    text-shadow: 2px 2px 4px #000c;
}

.link-button img {
    width: 15%;
}

