
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f5f5f5;
}
.all {
    position: relative;
    width: 80%;
    height: 90vh;
}
.top{
    width: 100%;
    height: 50%;
    overflow: hidden;
}
.top img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}
.bottom {
    width: 100%;
    height: 50%;
    background-color: hsl(275, 100%, 97%);
}
.main {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    box-shadow: 0px px 10px rgba(197, 193, 193, 0.2);
    border-radius: 10px;
    width: 400px;
}
.logo_text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: large;
    min-height: 60px;
}
.logo {
    width: 30px;  
    height: auto;  
}
.logo_text strong {
    font-weight: 700; 
    font-size: 20px;

}
.main p {
    size: 16px;
}
.question {
    font-weight: 600; 
    font-size: 16px;
    margin-bottom: 20px;
    margin: 0;
}

.item {
    display: flex;
    flex-direction: column; 
    padding: 10px 0;
    border-bottom: 1px solid rgba(156, 152, 152, 0.1);
}

.wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px; 
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

.answer {
    display: none; 
    font-weight: 400; 
    font-size: 16px;
    color: hsl(292, 16%, 49%);
    margin-top: 10px; 
}
.question:hover {
    color: hsl(292, 90%, 60%);
    cursor: pointer; 
}
.question:focus {
    outline: 1px solid hsl(292, 90%, 60%); 
    border-radius: 5px;
}