#profile {
    position: relative;
    justify-content: center;
    height: 120%;
    width: 100%;
    background: #2d3142;
    overflow: hidden;
}

#spacer {
    display: inline-flex;
    justify-content: center;
    background-color: transparent;
    height: 10%;
    width: 100%;
    outline: none;
    padding: 0;
    border: none;
    cursor: pointer;
}

.arrow {
    position: relative;
    top: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    border-right: 3px solid white;
    border-bottom: 3px solid white;
}

#innerarrow {
    position: relative;
    top: -15%;
    left: -15%;
    width: 20px;
    height: 20px;
    border: none;
    border-right: 2px solid white;
    border-bottom: 2px solid white;

    animation: point 2s infinite;
}

@keyframes point {
    from {opacity: 1; top: 0; left: 0;}
    to {opacity: 0; top: -15%; left: -15%;}
}

#slants {
    position: absolute;
    width: 100%;
    height: 100%;
    right: 150vw;
    top: 20%;
    transition: 0.3s;
    transition-timing-function: ease-in;
}

#slantback {
    position: relative;
    background: #4f5d75;
    width: 100vw;
    height: 70%;
    transform: skewX(-30deg);
    right: 0;
}

#slant {
    position: relative;
    background: #807f7f;
    width: 100vw;
    height: 70%;
    transform: skewX(-30deg);
    top: -75%;
}

#writing {
    position: absolute;
    display: block;
    left: 10%;
    width: 80%;
    top: 17%;
    overflow-y: hidden;
    opacity: 0;
    transition: 0.3s;
    transition-timing-function: ease-in;
}

:root {
    --text-color: white;
    --text-font: 'Raleway', sans-serif;
    --text-size: 3.5vh;
}

#profile-label {
    display: flex;
    color: var(--text-color);
    align-items: center;
    justify-content: left;
    height: 25%;
    width: 60%;
    font-size: 300%;
    font-family: 'american_captainregular';
}

#profile-label::before,
#profile-label::after {
    content: '';
    border-top: 2px solid var(--text-color);
    height:100%;
    width: 100px;
}

#description {
    padding-top: 30px;
    display: flex;
    color: var(--text-color);
    align-items: center;
    justify-content: justify;
    text-align: justify;
    height: 25%;
    font-size: var(--text-size);
    font-family: var(--text-font);
}

#school {
    padding-top: 50px;
    display: flex;
    color: var(--text-color);
    align-items: center;
    justify-content: justify;
    text-align: justify;
    height: 25%;
    font-size: var(--text-size);
    font-family: var(--text-font);
}

#contain {
    display: flex;
    justify-content: left;
    align-items: center;
    margin-top: 50px;
}

img {
    width: 40%;
    height: auto;
}

@media only screen and (max-width: 1000px) {
    #slants {
        right: 150vw;
        height: 90%;
        width: 78vw;
    }
    #slantback,
    #slant {
        transform: skewX(-20deg);
    }
    #profile-label{
        font-size: 86px;
        width: 100%;
        justify-content: center;
    }
    :root{
        --text-size: 250%;
    }
    #profile-label::before,
    #profile-label::after {
        width: 125px;
    }
    #profile {
        height: 150%;
    }
    #description {
        margin-top: 10%;
    }
    #school {
        margin-bottom: 10%;
    }
    img {
        width: 70%;
    }
}