@import url("reset.css");
@import url("../fonts/fonts.css");

/*------------------------Global------------------------*/
:root {
    --dark: #020202;
    --orange: #f6a108;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Manrope", sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    color: #fff;
    background: var(--dark);
    overflow-x: hidden;
}

a,
a:hover {
    color: #fff;
    text-decoration: none;
}

img {
    max-width: 100%;
}

input,
button,
textarea {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
}

input:not([type=checkbox]):not([type=radio]),
textarea,
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input:focus,
textarea:focus,
button:focus {
    outline: none;
}

b {
    font-weight: 600;
}

h1,
h2,
h3,
h4 {
    font-weight: 600;
}

.container {
    max-width: 1700px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto
}

.title-box {
    text-align: center;
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 30px;
}

.title-box-small {
    font-size: 26px;
    margin-bottom: 15px;
    text-decoration: underline;
}

.flex {
    display: flex;
}

.align-item-center {
    align-items: center;
}

.justify-space-between {
    justify-content: space-between;
}

.logo {
    margin: 0 auto 20px;
    width: 200px;
}

.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(100vh - 40px);
}

/*------------------------Buttons------------------------*/

.btn {
    background: transparent;
    padding: 15px 20px;
    border: 0;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.btn:hover {
    opacity: 0.85;
}

.btn-orange {
    background: var(--orange);
}

.btn-green {
    background: #89ab00;
    color: #fff;
}

