@font-face {
    font-family: 'offside';
    src: 
    url('./../fonts/Offside-Regular.ttf');
}
:root {
    font-family: sans-serif;
    --accent: #f85f5f;
}
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
    background: #000;
    width: 100vw;
    font-family: 'offside';
}

/**********                header               *************************/
header {
    width: 100vw;
}
nav {
    width: 50%;
    height: 10vh;
    display: flex;
    flex-direction: row;
    color: #fff;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}
header a {
    color: #fff;
    text-decoration: none;
    transition: all 300ms;
}

.main-nav ul {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    list-style-type: none;
}



/**********                content               *************************/
.container {
    width: 100%;
    position: relative;
}
.container::before {
    content: "";
    background-image: url('./../images/bg-lines.svg');
    background-size: cover;
    background-position: 80% 10%;
    width: 30vw;
    position: absolute;
    top: -1rem;
    bottom: -1rem;
    z-index: -1;
    opacity: 0.2;
}
@media screen and (max-width: 486px) {
    .container::before{
        background-position: 100% 0%;    
    }
}
main {
    color: #fff;
    width: 50%;
    min-height: 70vh;
    border: 2px solid #f85f5f;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-self: center;
    justify-content: space-evenly;
    align-items: center;
}
@media screen and (max-width: 486px) {
    main {
        width: 85%;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
main p {
    text-align: center;
}

main h1 {
    text-transform: capitalize;
}

/**********                footer               *************************/
footer {
    width: 100vw;
    height: 10vh;
    color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
footer .copyright {
    width: 50%;
    text-align: center;
}


/*******************      Contact         *******************************/
.form__field {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    font-size: 1rem;
}
.form__field input[type="submit"] {
    width: 100%;
    color: #131313;
    padding: 0.3rem 0;
    font-size: inherit;
    font-weight: 600;
    transition: 300ms;
}
.form__field input[type="submit"]:hover {
    transform: scale(0.95);
    cursor: pointer;
}
.form__field input {
    border-radius: 4px;
    background: rgba(250, 250, 250, 1);
}