* {
    --text: #eee5e1;
    --background: #070504;
    --primary: #FF4500;
    --secondary: #38746d;
    --accent: #657ab5;

    box-sizing: border-box;
}

html,body {
    margin: 0;
    padding: 0;
    font-family: Tahoma, "Trebuchet MS", sans-serif;
    background-color: var(--background);
    color: var(--text);
    overflow-x: hidden;
    font-size: 16px;
    width: 100%;
    height: 100%;
}

main {
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
    max-width: 1500px;
    width: 100%;
    margin: 0px;
}

@media screen and (max-width: 1500px) {
    main {
        position: relative;
        left: 0;
        transform: translate(0, 0);
        margin: 16px;
        width: calc(100% - 32px);
    }
}

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

.a {
    border-bottom: 1px solid var(--accent);
    transition-duration: .5s;
}

.a:hover {
    background-color: var(--accent);
    color: var(--background);
    padding: 0 2px;
}


/* Header */
header {
    height: 30vh;
    position: relative;
    width: 100%;
    color: var(--text);
    background-color: var(--primary);
}

header .mask {
    width: 100%;
    height: 100%;

    background-image:
        linear-gradient(to right, var(--accent) 1px, transparent 1px),
        linear-gradient(to bottom, var(--accent) 1px, transparent 1px);
    background-size: 30px 30px;

    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, var(--primary) 60%, transparent 100%);
    mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, var(--primary) 60%, transparent 100%);
}

header .content {
    position: absolute;
    top: 50%;
    left: 150px;
    transform: translate(0, -50%);
    width: 100%;
    z-index: 5;
}

@media screen and (max-width: 1200px) {
    header .content {
        left: 0;
        text-align: center;
    }
}

header .content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

header .account {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 48px;
    transition-duration: .5s;
}

header .account:hover {
    color: var(--accent);
}


/* New Button */
.newBtn {
    position: absolute;
    top: 0;
    right: 0;
}

@media screen and (max-width: 600px) {
    .newBtn {
        position: relative;
    }
}


/* Button */
button {
    border: 2px solid var(--primary);
    color: var(--primary);
    background-color: transparent;
    padding: 8px 16px;
    font-size: inherit;
    font-weight: 800;
    transition-duration: .5s;
}

button:hover {
    background-color: var(--primary);
    color: var(--background);
    cursor: pointer;
}


/* Form */
form {
    width: 100%;
    max-width: 750px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
}

form input {
    width: 100%;
    max-width: 400px;
    position: absolute;
    right: 0;
    padding: 10px;
}

form input[type="checkbox"] {
    width: 20px !important;
    height: 20px !important;
    position: static !important;
    left: 0 !important;
    transform: translate(0, 0) !important;
    accent-color: var(--primary);
}

form select {
    width: 100%;
    max-width: 400px;
    position: absolute;
    right: 0;
    padding: 10px;
}

form button {
    width: 100% !important;
}

@media screen and (max-width: 600px) {
    form input, form select {
        margin-top: 25px;
    }
}
