body {
    font-family: Baskervville, serif;
    background-image: url("media/background_img.png");
    background-size: cover;
    background-repeat: no-repeat;
}

p {
    font-size: 1.3rem;
    letter-spacing: 0.7px;
}

.v {
    color: white;
}

.nav_list element {
    padding: 50px;
    padding-left: 50px;
    display: inline;
}

.nav_list:hover {
    color: blue;
}

.h1 {
    text-align: center;
    color: white;
    font-size: 3em;
    letter-spacing: 0.7px;
}

.rightItems {
    margin-left: 40%;
    width: 40%;
}

.leftItems {
    margin-left: 15%;
    width: 40%;
}

@keyframes borderAnimation {
    0% {
        box-shadow: 0px 0px 20px 5px rgb(255, 255, 20);
    }
    50% {
        box-shadow: 0px 0px 20px 10px rgb(221, 56, 56);
    }
    100% {
        box-shadow: 0px 0px 20px 5px rgb(255, 255, 20);
    }
}

.wrapper {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: auto;
}

.hidden {
    opacity: 0;
    transition: all 5s;
}

.show {
    opacity: 1;
}

button {
    height: 50px;
    width: 5%;
    margin: auto;
    color: black;
    font-size: 1.5rem;
}

button[id="left"] {
    margin-bottom: 20%;
}

.info {
    margin: auto;
    width: 70%;
    padding: 0px 15px 0px 15px;
    color: azure;
    text-align: center;
    vertical-align: middle;
}

.info a {
    text-decoration: none;
    color: azure;
}

.info a:hover {
    border-bottom: 1px solid azure;
}

.row {
    display: flex;
    flex-direction: row;
    border: 1px solid;
    justify-content: space-between;
    align-items: center;
    margin: auto;
}

.row p {
    padding: 0 30px;
}

.currentProject {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#jessica {
    border-radius: 50%;
    box-shadow: 0px 0px 20px 5px rgb(255, 255, 20);
    animation: borderAnimation 3s linear infinite;
}

/* .socialLink {
    width: 1rem;
} */

#socials {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: auto;
}

#social-wrapper {
    display: flex;
    flex-direction: row;
    gap: 30px;
    margin: auto;
}

.social-icons {
    width: 3rem;
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-999px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(999px);
    }
}

.showing {
    animation: slideIn 2s linear;
    opacity: 1;
    transform: translateX(0);
}

.hiding {
    animation: slideOut 2s linear;
    opacity: 0;
    transform: translateX(999px);
}

.desc {
    text-align: left;
    width: 90%;
}

@media screen and (max-width: 800px) {
    .h1 {
        font-size: 2em;
    }

    p {
        font-size: 15px;
    }

    .info, #borderBG {
        width: 90%;
    }

    #jessica {
        object-fit: contain;
    }

    .wrapper {
        flex-direction: column;
    }

    button {
        width: 20%;
        font-size: 1.3rem;
    }
}