@font-face {
    font-family: "Kaushan Script";
    src: url("../fonts/KaushanScript-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: "Space Mono", Arial, serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: #fff;
    background: #FF9000;
    margin: 0;
}

.hidden {
    display: none;
}

.wrapper {
    position: relative;
    overflow-x: hidden;
    transition: 0.5s;
    background-size: cover;
    background-attachment: fixed;
    height: 100svh;
    width: 100%;
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 144, 0, 0.9);
}

.content {
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
    justify-content: center;
    position: relative;
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
    animation-delay: 0.3s;
}

h1 {
    font-family: "Kaushan Script", cursive;
    font-size: 50px;
    line-height: 1.3;
    font-weight: 300;
    margin: -20px 0 25px;
    transform: rotate(-5deg);
    position: relative;
    pointer-events: none;
    user-select: none;
}

h1 span{
    padding: 4px 15px;
    position: relative;
}

h1 span:before,
h1 span:after {
    position: absolute;
    top: 40px;
    width: 30px;
    height: 4px;
    content: '';
    background: #fff;
}

h1 span:before {
    left: 0;
    margin-left: -30px;
}

h1 span:after {
    right: 0;
    margin-right: -30px;
}

h2 {
    font-size: 16px;
    margin: 0;
    font-weight: 400;
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 34px;
    }
    h1 span:before,
    h1 span:after {
        top: 28px;
        width: 20px;
        height: 3px;
    }
    h1 span:before {
        margin-left: -15px;
    }
    h1 span:after {
        margin-right: -15px;
    }
    h2 {
        font-size: 14px;
    }
}

ul {
    margin-top: 25px;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

ul li a {
    color: #fff;
    padding: 0 10px;
    text-decoration: none;
    display: block;
}

ul li a svg{
    width: 30px;
    height: auto;
    transition: transform 0.2s ease-in-out;
}

ul li a:hover svg {
    transform: scale(1.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
