main{
    padding: 2vw 12vw;
    display: flex;
    flex-direction: column;
    gap: 3vw;
}
.close-button{
    display: flex;
}

.close-button a{
    display: flex;
    gap: 1vw;
    color: black;
    font-size: 1.1vw;
    font-weight: bold;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
}

.close-button a:hover{
    color: #bb1414;
}

.content{
    display: flex;
    background-color: white;
    border: 1px solid #cfcfcf;
    border-radius: 0.521vw;
    padding: 8vw 6vw;
    gap: 2vw;
    flex-direction: column;
    align-items: center;

}

.img-content{
    height: 30vw;
    width: 100%;
    border: 1px solid #cfcfcf;
    border-radius: 0.521vw;
}

.img-content img{
    object-fit: cover;
    border: 1px;
    border-radius: 0.521vw;
    height: 100%;
    width: 100%;
}

.content h1{
    font-size: 2.5vw;
    width: 50vw;
    text-align: center;
}

.text-content{
    font-size: 0.95vw;
    width: 50vw;
    text-align: justify;
    text-indent: 0.521vw;
    display: flex;
    flex-direction: column;
    gap: 1.042vw;
    font-size: 1.2vw;
}

.text-content p{
    line-height: 1.5;
}