* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}
html,body {
    min-height: 100%;
    overflow-x: hidden;
}
body {
    /*background-color: #333;*/
    color: #fff;
}
div#header {
    position: relative;
    background-color: orange;
    color: white;
    height: 150px;
    padding: 30px;
    font-size: 20px;
    /*-webkit-text-stroke: 1px black;*/
    text-shadow: black 1px 1px 5px;
    box-shadow: black 0 2px 8px;

    background: rgba(255, 165, 0, 0.51);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4.6px);
    -webkit-backdrop-filter: blur(4.6px);
    border: 1px solid rgba(255, 165, 0, 0.98);
    z-index: 99;
}
#header-logo {
    width: 70px;
    height: auto;
    position: absolute;
    top: 22px;
    left: clamp(15px, 2vw, 30px);
    filter: drop-shadow(3px 3px 5px black);
}
div#header h1 {
    /*margin-left: 100px;*/
    margin-left: clamp(70px, 10vw, 100px);
}
div#header a {
    color: white;
    text-decoration: none;
}
div#menu {
    margin-top: 10px;
    padding-left: 90px;
    z-index: 99;
}
div#menu a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
}
div#menu a:hover {
    text-decoration: underline;
}
div#menu img {
    width: 50px;
    height: auto;
    float: right;
    filter: drop-shadow(3px 3px 5px black);
}
div#info {
    position: relative;
    padding: 30px;
    text-align: center;
    z-index: 1;
}
div#info h2{
    margin: 20px clamp(10px, 10%, 200px);
    font-size: clamp(28px, 4vw, 36px);
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}
div#info h3{
    margin: 20px clamp(10px, 10%, 200px);
    font-size: 24px;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}
div#info p {
    margin: 15px clamp(10px, 10%, 200px);
    line-height: 1.6;
    font-size: clamp(16px, 2vw, 20px);
    opacity: 0;
    animation: fadeIn 2s ease-out forwards;
    text-align: center;
}
div#info p#email{
    text-align: center !important;
}
div#info a {
    color: #fff;
    font-weight: bold;
}
div#info ul {
    list-style-type: none;
    margin: 20px clamp(10px, 10%, 200px);
    text-align: left !important;
    display: inline-block;
    font-size: 18px;
    opacity: 0;
    animation: fadeIn 2s ease-out forwards;
}
div#info ul h3 {
    margin: 15px 0 !important;
}
div#info ul#socials {
    list-style-type: circle;
    text-align: right;
}
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

#hamburger {
    width: 40px;
    height: 40px;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: absolute;
    top: 35px;
    right: 30px;
    z-index: 100 !important;
}

#hamburger span {
    display: block;
    width: 30px;
    height: 4px;
    margin: 5px 0;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
    box-shadow: black 1px 1px 5px;
}
.centered {
    text-align: center !important;
}
@media (max-width: 900px) {
    #hamburger {
        display: flex;
        z-index: 100;
        position: fixed !important;
    }
    div#menu {
        padding-left: 0;
        margin-top: 0;
    }
    #menu {
        position: fixed !important;
        margin-top: 0;
        top: 0;
        right: -100vw;
        width: 80vw;
        height: 100vh;
        background: rgba(255, 165, 0, 0.95);
        box-shadow: -4px 0 30px rgba(0, 0, 0, 0.1);
        border-left: 1px solid rgba(255, 165, 0, 0.98);
        border-radius: 0;
        display: flex;
        flex-direction: column;
        padding: 40px 20px;
        transition: right 0.4s cubic-bezier(.77, 0, .18, 1);
        z-index: 99;
    }

    #menu.open {
        position: fixed !important;
        margin-top: 0;
        right: 0;
        display: flex;
        text-shadow: black 1px 1px 5px;
    }

    #menu a {
        margin: 10px 0;
        font-size: 20px;
        z-index: 100;
        text-shadow: black 1px 1px 5px;
    }

    div#menu img {
        margin-top: 50px;
        margin-bottom: 10px;
        padding: 0;
        float:left;
        z-index: 100;
    }

    h1 span {
        display: none;
    }
    #menu, menu.open{
        z-index: 99;
    }
    #menu.open {
        display: flex !important;
        z-index: 99 !important;
    }
}