@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

* {
    padding: 0;
    margin: 0;
}

body {
    background-color: #efefef;
}

.header {
    overflow: hidden;
    height: 16.5rem;
    background: url("https://i.ibb.co/YhkDvG5/2023-01-29-18-38-13.png") center;
}

.logo {
    display: flex;
    justify-content: center;
    height: inherit;

    backdrop-filter: blur(7px);
}

.container {
    display: flex;
    justify-content: center;
}

.content {
    position: relative;
    margin-top: -2rem;
    width: 50vw;
    height: 50vh;

    background-color: white;
    border-radius: 0 0 1rem 1rem;
}

#title {
    padding-top: 0.5rem;

    text-align: center;
    color: #d24c9f;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 16px;
    position: relative;
}

#title::after {
    content: "";
    position: absolute;
    bottom: -6px; /* Adjust this value to increase or decrease the distance between the line and the title */
    left: 50%; /* This will center the line under the title */
    transform: translateX(-50%);
    width: 40px; /* Adjust this value to increase or decrease the length of the line */
    height: 4px; /* Adjust this value to increase or decrease the thickness of the line */
    background-color: #d24c9f; /* Adjust this value to change the color of the line */
    border-radius: 4px; /* This will make the line rounded */
}

#text {
    padding: 1rem;

    text-align: left;
    color: darkgrey;
    font-family: 'Montserrat', sans-serif;
}