*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Works Sans', verdana, sans-serif;
    font-size: 2vw;
    background-color: #ebf7e8;
}

#abtmenubox {
    width: 100%;
    display: grid;
    grid-template-columns: 10vw auto 5vw auto 5vw auto 10vw;
    justify-items: center;
    padding: 0.6vw;
    background-color: rgba(241, 229, 255, 0.85);
    position: fixed;
}

a:link,
a:visited,
a:hover,
a:active {
	text-decoration: none;
}

.nav-headers {
    font-family: 'Work sans', verdana, sans-serif;
    font-size: 3vw;
    font-weight: 400;
    color: #2a41a6;
    padding: 0vw;
    margin: 0;
}

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

p {
    margin: 0;
}

#homelink {
    grid-column: 2;
}

#abtmelink {
    grid-column: 4;
}

#contactlink {
    grid-column: 6;
}

#abtmaingrid {
    width: 100vw;
    height: auto;
    display: grid;
    grid-template-columns: repeat(20, 1fr);
    grid-template-rows: auto 4vw auto;
    background-color: #ebf7e8;
}

#abtmainpic {
    grid-column: 1/21;
    grid-row: 1/3;

}

#abtwelcomebox {
    display: flex;
    grid-column: 3/19;
    grid-row: 2/4;
    /*	flex-wrap: nowrap;*/
    gap: 3vw;
    font-size: 3vw;
    justify-content: center;
    padding: 1.5vw;
    border: 1vw solid white;
    background-color: #bde6b3;
    border-radius: 50%;
}

.strikethrough {
    text-decoration: line-through;
    font-family: 'Bitter', serif;
}

.abtheads {
    margin: 0;
    font-size: 3vw;
    padding: 1vw;
    margin: 1vw;
    grid-column: 1/21;
    justify-self: center;
}

.abtme-img-box {
    display: flex;
    flex-direction: column;
    gap: 1vw;
    align-items: center;
}

.abtme-imgs {
    width: 50vw;
    height: auto;
}

.mystery {
    width: 50vw;
    height: 36vw;
    background-color: #000000;
    display: flex;
    color: #ffffff;
    justify-content: center;
    align-items: center;
    font-size: 25vw;
    position: relative;
}

.mystery-qmark {
    display: block;
    border: solid 1vw gold;
    padding-left: 7vw;
    padding-right: 7vw;
    cursor: pointer;
}

.rab-img {
    border: 1vw gold solid;
    display: none;
}

.next-button {
    font-size: 2vw;
    position: absolute;
    top: 0;
    right: 1vw;
    display: block;
}

.climb-trans {
    width: 50vw;
    height: 35vw;
    background-image: url("../images/climbinga.jpg");
    background-size: cover;
    transition: 1.5s;
}

.climb-trans:hover {
    background-image: url("../images/climbingc.jpg");
    transform: rotate(360deg);
}

footer {
    background-color: rgba(241, 229, 255, 0.85);
    padding: 2vw;
    margin-top: 4vw;
}

@media only screen and (min-width: 600px) {
    .nav-headers {
        font-size: 2vw;
    }
}
