body {
    margin: auto;
}

#header {
    display: inline-flex;
    position: fixed;
    z-index: 1;
    width: 100vw;
    height: auto;
}

#ra-topname {
    position: relative;
    color: #333;
    cursor: default;
    left: 5vw;
    top: 5vh;
    font-size: 40px;
    /* background: lightgray; */
    padding: 10px;
} 

#header-sublinks {
    position: absolute;
    display: flex;
    color: #333;
    cursor: default;
    right: 5vw;
    top: 5vh;
    font-size: 25px;
}

.sublink {
    position: relative;
    padding: 0px 10px;
}

.sublink:hover {
    cursor: pointer;
    text-decoration: underline;
}

#body {
    width: 100vw;
    display: flex;
}

#body-suit {
    z-index: 0;
    position: relative;
    margin: auto;
    display: grid;
    grid-template-columns: 30vw 30vw 30vw;
    top: 30vh;
}

.article-body {
    display:block;
    padding: 3vh 0;
}

.article-img:hover {
    cursor: pointer;
}

.article-img {
    display: block;
    height: inherit;
    width: 25vw;
    /* border: 2px solid transparent; */
}

/* .article-img:hover{
   border: 2px solid lightgrey;
} */

.article-text {
    top: 10px;
    position: relative;
    font-size: 16px;
    cursor: default;
}

.ac-select {
    display: none;
    margin-top: 10px;
    padding: 20px;
    background: #f2f2f2;
    border-radius: 8px;
}

.ac-select.open {
    display: block;
}

.ac-video {
    margin-top: 20px;
}

.ac-text {
    font-size: 16px;
}

#email-address {
    position: fixed;
    display: flex;
    margin: auto;
    width: 100vw;
    bottom: 0;
    justify-content: center;
    font-size: 19px;
    bottom: 8px;
    background-color:#f2f2f2bd
}

@media (max-width:768px) {

    #ra-topname {
    display: flex;
    position: relative;
    color: #333;
    cursor: default;
    left: 0vw;
    top: 0vh;
    font-size: 40px;
    padding: 10px;
    width: 100vw;
    justify-content: center;
} 

    #body-suit {
        grid-template-columns: 65vw;
        top: 20vh;
}

    .sublink {
        font-size: 13px;
    }

    .article-img {
        width: 65vw;
    }

    .article-text {
    font-size: 12px;
}

    #email-address {
        font-size: 16px;
    }
}