html, body {
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Kodchasan', sans-serif;
    margin: 0;
    background: #06060C;
    font-weight: 400;
}

p {
    margin: 0;
    color: #FFFFFF;
}

a {
    text-decoration: none;
    color: #FFFFFF;
}

input, textarea {
    border: none;
    outline: none;
    background: transparent;
    color: #FFFFFF;
}

button {
    color: #fff;
    border: none;
    outline: none;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

button:enabled {
    cursor: pointer;
}

.content {
    width: 96%;
    max-width: 1626px;
    margin: 0 auto;
}