*{
    box-sizing: border-box;
    padding: 0;
    margin:0;
}

body{
    background-color: #C8C7CF;
}

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;
    padding-right: 2vw;
}

.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;
}

article{
    padding: 7vw 7vw;
    text-align: justify;
    font-size: 2.5vw;
    line-height: 3.5vw;
}