html{
    height: 100%;
}

*{
    box-sizing: border-box;
    padding: 0;
    margin:0;
}

body{
    background-image: linear-gradient(#C8C7CF,#4B7778);
    background-repeat: no-repeat;
    height: 100%;
    background-attachment: fixed;
}

header h1{
    text-align: center;
    padding-top: 8vw;
    font-size: 13vw;
    font-family: "Pinyon Script";
    font-weight: 200;
}

.info ul{
    list-style: none;
    display: flex;
    justify-content:space-evenly;
    padding-top: 3vw;
}

.info ul li{
    display: flex;
    font-size: 3vw;
    padding: 2vw;
}

.nav ul{
    justify-content:space-evenly;
    display: flex;
    margin-top: 0;
    list-style: none;
}

.subject{
    justify-content: space-between;
    padding-top: 8vw;
    
}

.writing{
    flex-direction: column;
    text-decoration: none;
    color: black;
    font-size: 2.5vw;

    padding: 1.5vw 2.5vw;
    border:2px solid black;
    border-radius: 10px 60px;
    position: relative;
    transition: .5s;
}

.writing:hover{
    border-radius: 60px 10px;
}


.aboutSection{
    display: flex;
    padding: 15vw 2vw;
} 

.aboutSection img{
    width: 40vw;
    display: flex;
    box-shadow: 0 8px 24px hsla(0, 0%, 0%, .15);
}

.aboutSection p{
    font-size: 2.5vw;
    line-height: 3.5vw;
    display: flex;
    padding: 2vw;
    text-align: justify;
}
