@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');

body{
    background-image: url(bg.png);
    color: aliceblue;
    font-family: 'Montserrat', sans-serif;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 5px 10%;
    border-bottom: 1px solid #fff6de33;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}
.navbar a{
    color: aliceblue;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-decoration: none;
    margin-left: 80px;
    transition: .5s;
}
.navbar a:hover{
    color: #fdc11f;
}

.middle{
    position: relative;
    max-height: 850px;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 70px 10% 0;
}

.text h3{
    font-size: 30px;
    font-weight: 400;
}

.text h1{
    color: #FFBE46;
    font-size: 70px;
    font-weight: 700;
}

.home_image img{
    max-width: 700px;
}

.text button{
    margin-top: 40px;
    height: 50px;
    width: 150px;
    font-size: 16px;
    color: #7500B2;
    background: #60BAAF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    border-radius: 30px;
    border: 0px;
    cursor: pointer;
    transition: .5s;
}

.text button:hover{
    background: #3eb3a5;
}

.social-media {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
  }
  
.social-media a {
    margin-left: 10px;
    font-size: 28px;
    color: #7acabd;
}

.social-media a:hover{
    color: #5ac0af;
}


.about-text{
    padding: 5px 10%;
    margin-top: 130px;

}

.about-text h2{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 70px;
    margin-bottom: 30px;
    color: #fdc11f;
}

.about-text p{
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 20px;
}

.contact-title h2{
    padding: 5px 10%;
    margin-top: 130px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 70px;
    margin-bottom: 30px;
    color: #fdc11f;
}

.contact{
    position: relative;
    width: 100%;
    display: flex;
    padding: 70px 10% 0;
}

.adress{
    margin-left: 100px;
}

.contact h6{
    color: #fdc11f;
    font-size: 20px;
    font-weight: normal;
}

.contact p{
    margin-bottom: 50px;
    margin-left: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 25px;
}


