body.main_page{
    background: black;
    overflow: hidden;
}

.ascii_container{
    height: 100%;
    width: 100%;
}

#ascii_canvas{
    background-color: black; 
    color: rgb(53, 53, 53); 
    position: absolute; 
    top:50%; 
    left:50%; 
    transform: translate(-50%, -50%); 
    font-size: 23px;
}

#main_text{
    background-color: rgba(0, 0, 0, 0.95);
    border: 2px solid white;
    position:relative;
    width: 30%;
    height: 30%;
    font-size: 10px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color:white;
    min-width: fit-content;
    min-height: fit-content;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
    margin-bottom: 1%;
}

#main_container{
    position: absolute;
    max-width: 30%;
    min-width: fit-content;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
}

#main_button{
    background-color: rgba(0, 0, 0, 0.95);
    border: 2px solid white;
    color: white;
    text-align: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-decoration: none;
    width: 23.71%;
    display: inline-block;
}

.link:link{
    color: white;
    background-color: transparent;
    text-decoration: none;
}

.link:visited{
    color: white;
    background-color: transparent;
    text-decoration: none;
}

.link:hover{
    color: white;
    background-color: transparent;
    text-decoration: none;
}

.link:active{
    color: white;
    background-color: transparent;
    text-decoration: none;
}

.contactContainer{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 600px) {
    .contact{
        flex:100%;
    }
}

.contact{
    display: inline-block;
    display: flex;
    margin: 10px;
    height: 75px;
    width: fit-content;
    align-items: center;
    background-color: black;
}

.contactIcons{
    height: 45px;
    width: auto;
    margin: 0px 10px 0px 10px; 
}

.contactText{
    margin: 10px;
    font-size: 20px;
}