* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    min-height: 100vh;
    height: 100%;
    position: relative;

    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
} header {
    align-self: stretch;
    padding: 5px 0px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2vw;

    color: gold;
    background-color: orangered;
    font-weight: 900;
    font-size: clamp(10px, 2vw, 20px);
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
}
@media (max-width: 780px) {
    header p:last-of-type{
        display: none;
    }
}

main {
    align-self: stretch;
    flex: 1 0 auto;

    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* gap: calc(75px + 15vh); */

    /* box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5); */
    /* overflow: visible; */
} .main-left {
    align-self: stretch;
    flex: 1 0 auto;

    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    
    background-color: cadetblue;
} .main-left .side-top {
    align-self: stretch;
    flex: 1 0 auto;

    display: flex;
    justify-content: center;
    align-items: flex-end;
} .main-left .side-bottom {
    align-self: stretch;
    flex: 1 0 auto;

    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: calc(50px + 4vw)
} button svg {
    width: clamp(75px, 15vw, 150px);
    height: auto;
} .main-right {
    align-self: stretch;
    flex: 9 0 900px;
    max-height: 100vh;
    padding-top: 5vh;

    display: flex;
    flex-flow: column wrap;
    justify-content: flex-start;
    align-items: center;

    background-color: rgb(77, 127, 128);
    background-attachment: scroll;
    overflow-y: auto;
    scroll-behavior: smooth;
} 
@media (min-width: 650px) and (max-width: 1200px) {
    main {
        flex-flow: column nowrap;
    } .main-left {
        flex: 0 0 600px;
    } .main-left .side-top {
        flex: 1 0 auto;
        gap: 5vw;
    } .main-left .side-bottom {
        flex: 1 0 auto;
    }
    .main-right {
        flex: 7 0 auto;
    }
}
@media (max-width: 650px) {
    main {
        flex-flow: column nowrap;
        align-items: stretch;
        min-height: 100svh;
    } .main-left {
        flex: 0 0 40svh;
        min-height: 40svh;
    } .main-left .side-top {
        flex: 1 0 auto;
    } .main-left .side-bottom {
        flex: 1 0 auto;
    }
    .main-right {
        flex: 1 1 60svh;
        min-height: 0;
        max-height: none;
        overflow-y: auto;
        padding-top: 2rem;
    }
}

footer {
    align-self: stretch;
    padding: 1vh 0;

    display: flex;
    justify-content: center;
    align-items: center;
} footer p {
    color: gold;
    font-size: calc(1rem + 0.5vw);
    font-weight: 600;
    text-shadow: 0 0 4px black,
                 0 0 2px black,
                 0 0 1px black;
                 font-weight: 600;
    letter-spacing: calc(0.05rem + 0.05vw);
}

button {
    background-color: inherit;
    border-style: none;
    cursor: pointer;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 1px 1px);
    white-space: nowrap;
    border: 0px;
}

/* Logo Image change */
svg#logoinitial{
    width: clamp(150px, 25vw, 500px);
    height: auto;
}
#logo {
    transition: transform 0.75s ease;
    will-change: transform;
    transform-box: view-box;
    transform-origin: 100px 100px;
}
@media (hover:hover) and (pointer:fine) {
    #logoinitial:hover #logo {
        transform: scale(1.2);
    }
}
@media (prefers-reduced-motion: reduce) {
    #logo { transition: none; transform: none; }
}

/* Links image change */
button:hover {
    transform: scale(1.2);
    transition: 1s;
}

