* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none;
    font-family: 'Segoe UI', sans-serif;
}

body {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    align-items: center;
    background: url(../img/70f1f86fd37e28464f02a0c05666e2d8.jpg) no-repeat center;
    background-size: cover; 
    font-size: 62.5%;
}

body > h1 {
    font-size: 2.5rem;
    color: #fff;
}

#container {
    max-width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    background: transparent;
    backdrop-filter: blur(10px);
    padding: 20px;
    border: 1px solid rgba(128, 128, 128, 0.63);
    border-radius: 10px;
    
}

#box-reviews {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;

}

#box-img {
    max-width: 125px;
}

#img {
    width: 100%;
    border-radius: 100px;
}

#title-subtitle {
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
}

#review {
    max-width: 80%;
    text-align: center;
    font-size: 1rem;
}

#box-buttons {
    display: flex;
    gap: 20px;
}

#box-buttons > button {
    flex-direction: row;
    font-size: 1.5rem;
    padding: 10px;
    gap: 10px;
    border-radius: 100px;
    color: #fff;
    background: transparent;
    cursor: pointer;
}

#box-buttons > button:hover {
    background: #3f3f3f93;
}


