#body{
    background-image: url(/src/img/me.jpg);
    background-color: var(--popup-color);
}

#nav{
    padding-bottom: 0;
}

#main-section{
    padding: 2em 0 0 0;
    display: flex;
    flex-direction: column;
    max-height: none;
    color: var(--font-color);
    text-align: center;
}

h1{
    font-size: 4em;
    color: var(--font-color);
    padding-bottom: 40px;
}

.text-slider{
    font-size: 2em;
    margin: auto;
}

.text-slider span{
    background-color: var(--panel-color);
    display: block;
    height: fit-content;
    width: 0;
    overflow: hidden;
    float: left;
    transition: 0.5s;
    margin-bottom: 30px;
}

.text-slider span:first-child{
    width: 100%;
}

#socialButtonsLarge{
    display: none;
    position: absolute;
    left: 5%;
    top: 40%;
}

#socialButtonsSmall{
    margin: 2% 0 0 calc((100vw - 50px * 3)/2);
}

#socialButtonsSmall a:hover, #socialButtonsLarge a:hover{
    text-decoration: none;
}

@media only screen and (min-width: 640px){
    #main-section{
        padding-top: 2vh;
        max-height: 70vh;
    }

    #socialButtonsLarge{
        display: block;
    }

    #socialButtonsSmall{
        display: none;
    }
}