body, html {
    margin: 0;
    padding: 0;
    font-family: 'Mulish', sans-serif;
    background-color: #000;
    color: #edeae5;
}

.background {
    background-image: url('assets/background.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
    padding: 40px;
    box-sizing: border-box;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    display: flex;
    justify-content: space-between;
    max-width: 1100px;
    width: 100%;
}
header .logo img {
    width: 150px;
}

header .insta img {
    width: 60px;
}

.container {
    display: flex;
    flex-direction: row;
    height: 100%;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1100px;
    flex-wrap: wrap;
}
.content {
    display: flex;
    flex-direction: column;
    width: 50%;
    justify-content: center;
    align-items: center;
    min-width: 400px;
}

.container-img {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-img img {
    width: 235px
}

.texts {
    width: 360px;
}

.titulo {
    font-family: 'Playfair Display', serif;
    font-size: 55px;
    margin-bottom: 20px;
}
p {
    font-size: 20px;
    font-weight: 100;
}

.btn {
    margin-top: 20px;
    padding: 12px 15px;
    border: none;
    border-radius: 30px;
    background-color: #e7be56;
    color: #3a3a36;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 15px;
}

.modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.form-box, .agradecimento-box {
    background-color: #1c1c1c;
    padding: 40px;
    border-radius: 30px;
    max-width: 400px;
    width: 90%;
}



.form-box input {
    display: block;
    width: 100%;
    margin-bottom: 50px;
    margin-top: 15px;
    padding: 12px;
    font-size: 15px;
    border: none;
    border-radius: 50px;
}

.form-box button {
    padding: 12px 24px;
    font-size: 16px;
    background-color: #e7be56;
    color: #3a3a36;
    border: none;
    border-radius: 30px;
    cursor: pointer;
}

.agradecimento-box strong {
    display: block;
    margin-top: 20px;
    font-size: 24px;
}

.agradecimento-box span {
    display: block;
    margin-top: 20px;
    cursor: pointer;
    font-size: 20px;
}

@media screen and (max-width: 768px) {
   .container-img {
    width: 100%;
    padding-bottom: 50px;
   }

   .content {
    width: 100%;
    margin-bottom: 50px;
   }

   .texts {
    width: 100%;
   }

   p {
    font-size: 16px;
   }

   .content {
    
    min-width: 0;
    
    }
    .background {
     height: 100%;   
    }
}
