@font-face {
    font-family: Fixel;
    src: url("../font/CraftworkGrotesk-Regular.otf") format("opentype");
}
html{
    scroll-behavior: smooth;
}
*{
    margin: 0;
    padding: 0;
    font-family: 'Fixel', sans-serif;
    box-sizing: border-box;
}
body{
    background: #F1E9D2;
    color: black;
}
#header{
    margin-top: 20px;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
}
.container{
    padding: 10px 10%;
}
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}
nav ul li a{
    color: black;
    text-decoration: none;
    font-size: 18px;
    position: relative;
}
nav ul li a::after{
    content: '';
    width: 0;
    height: 3px;
    background: black;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}
nav ul li a:hover::after{
    width: 100%;
}
.header-text{
    margin-top: 20%;
    font-size: 60px
}
.header-text h1{
    font-size: 60px;
    margin-top: 20px;
}
.button-1 {
    margin-top: 35px;
}
.button-1 a{
    background-color: black;
    color: #F1E9D2;
    text-decoration: none;
    border-radius: 5em;
    text-align: center;
    padding: 15px;
    
}
.button-1 a:hover{
    color:#FFA500;
}
#prediction{
    margin-top: 60px;
    text-align: left;
    width: 100%;
    height: 75vh;
}
.new-quote-button{
    margin-top: 50px;
    position: absolute;
    color: #F1E9D2;
    background: #1D1D1B;
    border-radius: 100px;
    padding: 10px 45px;
    font-size: 1.3em;
    letter-spacing: .15em;
    text-decoration: none;
}
.new-quote-button a{
    color: #F1E9D2;
    text-decoration: none;
    font-weight: 700;
}
.new-quote-button a:hover{
    color: #FFA500;
}
#about{
    padding: 80px 0;
    height: 100vh;
}
.row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.about-1{
    flex-basis: 35%;
}
.about-1 img{
    width: 100%;
    border-radius: 15px;
}
.about-2 {
    padding-top: 150px;
    flex-basis: 60%;
}
.about-me-name{
    font-size: 60px;
}
.about-2 p {
    font-size: 30px;
}
nav .fas{
    display: none;
}
@media only screen and (max-width: 600px) {
    .header-text{
        margin-top: 100%;
        font-size: 20px;
    }
    .header-text h1{
        font-size: 40px;

    }
    nav .fas{
        display: block;
        font-size: 25px;
    }
    nav ul{
        background: #FFA500;
        position: fixed;
        top: 0;
        right: -200px;
        width: 200px;
        height: 100vh;
        padding-top: 50px;
        z-index: 2;
        transition: right 0.5s;
    }
    nav ul li{
        display: block;
        margin: 25px;
    }
    nav ul .fas{
        position: absolute;
        top: 25px;
        left: 25px;
        cursor: pointer;
    }
    .about-me-name{
        font-size: 40px;
    }
    .about-1, .about-2{
        flex-basis: 100%;
    }
    .about-2{
        margin-top: 20px;
    }
    .about-2 p{
        font-size: 20px;
    }
}