* {
    padding: 0;
    margin: 0;
    font-family: Palatino;
    color: #f0efe6;
    cursor: none;

}

body {
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
    background-color: #f0efe6;
}

nav {
    min-height: 10px;
    margin: 0 -10px;
}


nav ul {
    background-color: #445482;
    list-style-type: none;
    font-size: 20px;
    padding: 10px 20px;
    display: grid;
    grid-template-columns: 1fr, 1fr, 1fr;
}

.title {
    grid-column: 2/3;
    justify-self: center;
}

.artist_statement {
    grid-column: 1/2;
    justify-self: start;
    border-bottom: solid;
}

.video {
    grid-column: 3/4;
    justify-self: end;
}

nav a {
    text-decoration: none;
}

nav img {
    width: 150px;
}

h2 {
    color: #445482;
    padding: 80px 0 40px 0;
}

p {
    line-height: 2;
    text-align: justify;
    color: #445482;
}


img {
    width: 100%;
}

.columns {
    text-align: center;
    justify-content: center;
    display: grid;
    grid-template-columns: 49.25% 0.5% 49.25%;
    grid-gap: 5%;
    margin: 0 10%;
}

.english p {
    text-indent: 50px;

}

.greek p {
    font-family: "Times New Roman", Times, serif;
    text-indent: 50px;

}




.filler {
    position: absolute;
    bottom: 0;
    background-color: #f0efe6;
    height: 100%;
    width: 1px;
    animation-name: stitch;
    animation-duration: 30s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
    z-index: 10;
}


.stitching {
    position: relative;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23445482FF' stroke-width='3' stroke-dasharray='36' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
    width: 1px;
}


@keyframes stitch {
    from {
        height: 100%;
    }

    to {
        height: 0;
        /*        background: transparent;*/
    }
}

.cursor {
    background-color: #445482;
    z-index: 100;
    position: fixed;
    pointer-events: none;
    border-radius: 15px;
    visibility: visible;
}

.cursor1 {
    transition: transform .4s, width .4s, height .4s;
    width: 15px;
    height: 15px;
    transform: translate(-50%, -50%);
    opacity: 90%;
}

.cursor2 {
    width: 8px;
    height: 8px;
    transform: translate(-50%, -50%);
    transition: all 100ms ease-out;
    opacity: 80%;
}

.cursor3 {
    width: 6px;
    height: 6px;
    transform: translate(-50%, -50%);
    transition: all 200ms ease-out;
    opacity: 60%;
}

.cursor4 {
    width: 3px;
    height: 3px;
    transform: translate(-50%, -50%);
    transition: all 400ms ease-out;
    opacity: 40%;
}

.cursor.is-hidden {
    visibility: hidden;
}

.cursor.border {
    border: solid 0.2px;
    border-color: #efede6;
}

.cursor.color {
    background-color: #efede6;

}

.cursor1.size {
    width: 30px;
    height: 30px;
}
