:root {
    --primary: #c93730;
    --secondary: #f4c78a;
    --dark: #242425;
    --light: #f6f6f6;
    --border: 2px solid var(--dark);
    --space-between: 10px;
}

html,
body {
    max-width: 100vw;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

body {
    color: var(--light);
    background: var(--dark);
    font-family: Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

footer {
    padding: 5px;
    display: flex;
}

.copy {
    flex: 1;
}

.impress {
    display: flex;
    justify-content: end;
}

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

a {
    color: inherit;
    text-decoration: none;
}


.reset {
    background: url("reset.webp") top center no-repeat;
    position: absolute;
    width: 33%;
    height: 33%;
    background-size: contain;
    top: 60%;
    left: 50%;
    margin-left: -16.5%;
}


.header {
    background-image: url("aw-bg.webp");
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    position: relative;
}

@media (max-width: 1024px) {
    .header {
        height: 100vw;
    }
}


.social {
    display: flex;
    justify-content: center;

    svg {
        margin: 10px 10px;
        width: 2em;
        height: 2em;
    }
}
