:root{
    --white: #FCFCFC;
    --black: #141414;
    --gray: #606060;
    --orange: #ED722E;
    --lightorange: #fd975f;
    --blue: #3C62AD;
    --bg: #001848;
}

@font-face{
	font-family: "Inter";
	font-style: normal;
	font-weight: 400;
	src: url(assets/css/fonts/Inter-Regular.ttf);
}


@font-face{
	font-family: "Inter";
	font-style: normal;
	font-weight: 600;
	src: url(assets/css/fonts/Inter-SemiBold.ttf);
}

@font-face{
	font-family: "UbuntuMono";
	font-style: normal;
	font-weight: 400;
	src: url(assets/css/fonts/UbuntuMono-Regular.ttf);
}

body{
    background-color: var(--bg);
    font-family: "Inter", sans-serif;
    font-weight: 400;
    overflow-x: hidden;
}

body, p{
    margin: 0;
}

.button a{
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    background-color: var(--orange);
    padding: 16px 18px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.button a:hover{
    background-color: var(--lightorange);
}

.intro{
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    height: 100vh;
}

.intro__logo{
    margin-top: 25vh;
}

.intro__button{
    margin-top: 40px;
}

.intro__arrow{
    margin: auto 0 80px 0;
}

.info{
    background-color: var(--white);
    width: 100%;
    padding-top: 40px;
    padding-bottom: 20px;
}

.info p:nth-child(1){
    margin-top: 0;
}

.info p{
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--black);
}

.terms{
    padding: 10px 10px 160px 10px;
    color: var(--white);
    font-family: "UbuntuMono";
}

.terms__title{
    font-size: 18px;
    line-height: 1;
}

.terms__item{
    margin-top: 32px;
}

.terms__item p{
    line-height: 1.2;
    font-size: 15px;
    margin-top: 10px;
}

.terms__item-title{
    font-size: 16px;
    line-height: 1;
}

.terms__agree{
    position: fixed;
    bottom: 0;
    left: 0;
    text-align: center;
    padding: 24px 0;
    width: 100%;
    background-color: var(--blue);
    font-size: 13px;
    line-height: 1.4;
}

.terms__agree a{
    font-size: 13px;
    color: var(--white);
    font-family: "Inter";
    padding: 12px 40px;
    background-color: var(--orange);
    text-decoration: none;
    display: inline-block;
    margin-top: 16px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.terms__agree a:hover{
    background-color: var(--lightorange);
}

.termsback{
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    color: var(--gray);
    padding: 16px 10px;
    align-items: center;
    text-decoration: none;
}

.termsback span{
    margin-left: 16px;
}

.enter{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: "UbuntuMono";
    color: var(--white);
    padding: 0 10px;
    text-align: center;
}

.enter h3{
    font-size: 24px;
    line-height: 1;
    margin: 0;
}

.enter span{
    font-size: 14px;
    line-height: 1.4;
    margin-top: 12px;
    margin-bottom: 72px;
}

.enter a{
    font-size: 22px;
    color: var(--white);
    padding: 18px 76px;
    background-color: var(--orange);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.enter a:hover{
    background-color: var(--lightorange);
}

.phrase{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: "UbuntuMono";
    color: var(--white);
    padding: 0 10px;
    text-align: center;
}

.phrase h3{
    font-size: 24px;
    line-height: 1;
    margin: 0;
}

.phrase span{
    font-size: 14px;
    line-height: 1.4;
    margin-top: 12px;
    margin-bottom: 72px;
}

.phrase form{
    width: 100%;
}

.phrase #phrase-input{
    margin-bottom: 80px;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--blue);
    width: 100%;
    color: var(--white);
    text-align: center;
    font-family: "UbuntuMono";
    font-size: 18px;
    padding-bottom: 8px;
    resize: vertical;
    height: 25px;
}

.phrase #phrase-input:focus{
    outline: 0;
}

.phrase-btn{
    background-color: var(--gray);
    font-family: "UbuntuMono";
    color: #aeaeae;
    border: none;
    padding: 16px 30px;
    border-radius: 5px;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}

.phrase-btn-active{
    background: var(--orange);
    color: var(--white);
    cursor: pointer;
}

.phrase-btn-active:hover{
    background-color: var(--lightorange);
}

@media only screen and (max-width: 600px){
    .intro__logo a img{
        width: 300px;
    }
    .info{
        padding-left: 10px;
        padding-right: 10px;
        width: auto;
    }
    .info .container{
        padding-left: 0;
    }
}