body{
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    color: #efefef;
    background-color: #363636;
}

.flex-column{
    display: flex;
    flex-direction: column;
    gap: calc(0.25vw + 0.25rem);
    align-items: center;
}

h1{
    font-size: calc(1.75vw + 1.75rem);
}

h2{
    font-size: calc(1.5vw + 1.5rem);
}

h3{
    font-size: calc(1.25vw + 1.25rem);
}

h4{
    font-size: calc(1.1vw + 1.1rem);
}

p{
    font-size: calc(1vw + 1rem);
}

h1, h2, h3, h4, h5, h6, a, p{
    margin: 0;
}

.abutton{
    color: #363636;
    text-decoration: none;
    background-color: #eeeeee;
    border-radius: 5px;
    padding: calc(0.5vw + 0.5rem);
    font-size: calc(1vw + 1rem);
    transition: all 0.25s ease-in-out;
}

.abutton[selected]{
    background-color: #f88c00;
    color: #ffffff;
}

[green]{
    background-color: green;
    color: #efefef;
}

.footer{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    /* background-color: #efefef; */
    height: fit-content;
    transition: all 0.4s ease-in-out;
}

.footer[hidden]{
    opacity: 0;
}

.fullw{
    width: 100%;
    box-sizing: border-box;
}

.fullw[selected]{
    width: 95%;
}

.border{
    height: calc(0.1vw + 0.1rem);
    min-height: 3px;
    border-radius: 5px;
    width: 90%;
    box-sizing: border-box;
    background-color: #bbbbbb;
}

.navmain{
    height: 100vh;
    width: 100vw;
    height: 100svh;
    width: 100svw;
    object-fit: cover;
    overflow: hidden;
}

[hidden]{
    display: none;
}