* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: raleway;
    color: white;
    /* border: 1px solid yellowgreen; */

}

body {
    background: #121321;
}

.navbar {
    position: sticky;
    max-width: 100%;
    top: 12px;
    margin-top: 56px;
    margin-left: 32px;
    width: calc(100% - 64px);
    height: 80px;
    border-radius: 10px;
    background-color: #4b25745a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(4px);
}

.logoelements {
    display: flex;
    align-items: center;
    cursor: pointer;
}

#logo {
    height: 3em;
    margin-left: 24px;
}

.logotxt {
    margin-left: 0.8em;
    font-family: lobster;
    font-size: 1.8em;
}

.linkelements {
    display: flex;
    align-items: center;
    list-style-type: none;
}

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

.link {
    margin-left: 2em;
}

:last-child.link {
    margin-right: 2em;
}

.sec-a {
    width: 100%;
    margin-top: 124px;
    align-items: center;
    justify-content: center;
}
.header{
    position: relative;
    right: 520px;
    display: flex;
    margin: 5px;

}

h1 {
    text-align: center;
    font-weight: 1000;
    font-size: 3em;
    padding: 6px;
    letter-spacing: 2px;
    word-spacing: 3px;
}

h3 {
    text-align: center;
    padding: 6px;
    line-height: 1.6em;
    word-spacing: 3px;
    letter-spacing: 1px;
    font-weight: 400
}

.sec-b {
    margin-top: 96px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Hide hamburger for bigger screens */
nav {
    display: none;
}

/* Media queries for mobile phones */
@media screen and (max-width: 748px) {
    .hide-for-phone{
        display: none;
    }
    .link {
        display: none;
    }
    .navbar {
        top: 8px;
        margin-left: 14px;
        width: calc(100% - 28px);
    }
    nav {
        display: flex;
        align-items: center;
        list-style-type: none;
        justify-content: space-between;
    }
    .logo{
        margin-left: 0px;
        height: 2em;
    }
    .logotxt{
        font-size: 1.4em;
    }
    #menuToggle {
        display: block;
        position: relative;
        z-index: 1;
        -webkit-user-select: none;
        user-select: none;
    }

    #menuToggle a {
        text-decoration: none;
        color: #9572B0;
        transition: color 0.3s ease;
    }

    #menuToggle a:hover {
        color: #9572B0;
    }


    #menuToggle input {
        display: block;
        width: 40px;
        height: 32px;
        position: absolute;
        cursor: pointer;
        opacity: 0;
        /* hide this */
        z-index: 2;
        /* and place it over the hamburger */
        -webkit-touch-callout: none;
    }


  /* Just a quick hamburger */

    #menuToggle span {
        display: block;
        width: 33px;
        height: 4px;
        margin-bottom: 5px;
        position: relative;
        background: #9572B0;
        border-radius: 3px;
        z-index: 1;
        transform-origin: 4px 0px;
        transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
            background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
            opacity 0.55s ease;
    }
    .hamburger{
        position: relative;
        right: 16px;
    }
    .logoelements{
        width: 100%;
        justify-content: space-between;
    }
    .logotxt{
        position: absolute;
        left: 64px;
    }

    #menuToggle span:first-child {
        transform-origin: 0% 0%;
    }

    #menuToggle span:nth-last-child(2) {
        transform-origin: 0% 100%;
    }

    #menuToggle input:checked~span {
        opacity: 1;
        transform: rotate(45deg) translate(-2px, -1px);
        background: #9572B0;
    }

    #menuToggle input:checked~span:nth-last-child(3) {
        opacity: 0;
        transform: rotate(0deg) scale(0.2, 0.2);
    }

    #menuToggle input:checked~span:nth-last-child(2) {
        transform: rotate(-45deg) translate(0, -1px);
    }

    /*
 * Make this absolute positioned
 * at the top left of the screen
 */
    #menu {
        position: absolute;
        display: none;
        width: 124px;
        padding: 8px;
        background-color: #e53bffab;
        border-radius: 18px;
        list-style-type: none;
        -webkit-font-smoothing: antialiased;
        /* to stop flickering of text in safari */
        transform: none;
        transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    }

    #menu li {
        padding: 6px 6px;
        font-size: 18px;
    }

    /*
 * And let's slide it in from the left
 */
    #menuToggle input:checked~ul {
        transform-origin: 0% 0%;
        transform: translate(-80%, 0);
        backdrop-filter: blur(32px);
        display: block;
    }
    h1{
        font-size: 2em;
        font-weight: 750;
        padding: 4px;
        letter-spacing: 1px;
        word-spacing: 2px;
    }
    h3{
        padding: 4px;
        line-height: 1.3em;
        word-spacing: 2px;
        letter-spacing: 0px;
        margin-top: 32px;
    }
    .header{
        right: 16%;
    }
}