*, *::before, *::after {
  box-sizing: border-box;
}

*:not(dialog) {
  margin: 0;
}


body {
    margin: 0;
    display: flex;
    justify-content: center;    
    position: relative;
}

.container {        
    width: 100%;
    height: 100vh;
    height: 100svh;
    max-width: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0rem 2rem;
    flex-direction: column;
}

.logo {
    width: clamp(12rem, 6.6923rem + 18.4615vw, 24rem);
}

header {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #FFFFFF;
    position: fixed;
    top: 2rem;
}

.header-logo {
    width: clamp(10rem, 7.9825rem + 7.0175vw, 15rem);
}

.list-wrapper {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 0.8rem;
    padding: 0;
    text-align: center;
    list-style: none;
}

.list-item a {
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: clamp(1.3rem, 0.9574rem + 1.1915vw, 2rem);
    text-decoration: none;
    letter-spacing: -0.4px;
    color: rgb(13, 13, 13);
    line-height: 1.05;
    position: relative;
    animation: all 0.2s ease-in-out;
}

.list-item a:hover {
    text-decoration: underline;
    text-decoration-thickness: 0.2rem;
    text-decoration-color: #e30512;
    text-underline-offset: 3px;
}

.list-item a span {
    font-weight: 700;
}

.list-item a span::before {
    content: "\2013";
    font-weight: 500;
}

@media screen and (max-width:576px) {

    header {
        width: 100%;
        margin-top: 2rem;
        position: relative;
        top: 0;
    }

    .list-wrapper {
        gap: 1rem;
        flex-grow: 1;
    }

    .list-item a:hover {
        text-decoration: none;
    }

    .list-item a span {
        display: block;
    }

    .list-item a span::before {
        display: none;
    }
}

.list-item a::before {
    content: "\2022";
    color: #e30512;
}