.header {
    display: flex;
    background-color: #00A6FF;
    justify-content: space-between;
    height: 7.2rem;
    z-index: 1;
}

.logo {
    margin-top: 6px;
    margin-left: 20px;
    position: absolute;
    left: 0;
}

.logo img {
    width:  clamp(120px, 55vw, 20rem);
    height: 6.5rem;
}

.nav-wide-links {
    margin-right: 20px;
    margin-top: 20px;
    font-size: 20px;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    right: 0;
}

.nav-wide-links div {
    display: inline-block;
}

.nav-wide-links a {
    text-decoration: none;
    color: #fff;
    transition: translate 0.5s;
}

.nav-wide-links a:hover {
    translate: 0 10px;
}

.content-text-header {
    width: 100%;
    margin-bottom: 20px;
    margin-top: 20px;
}

.content-text-header h2 {
    box-shadow: 10px 10px 5px #555;
    background-color: #f0f0f0;
    padding: 10px;
    border-radius: 5px;
    width: max-content;
    margin: auto;
}

.content-text-header img {
    width: 30rem;
}

.content-text {
    margin: auto;
    margin-bottom: 20px;
    background-color: #f0f0f0;
    box-shadow: 20px 20px 5px #555;
    width: 30rem;
    border-radius: 5px;
}

.content-text li {
    background-color: #555;
    color: #fff;
    padding: 10px;
    margin-top: 10px;
    width: auto;
    margin-bottom: 10px;
    list-style: inside;
    border-radius: 5px;
}

.content-text a {
    color: #fff;
}

@media (max-width: 600px) {
    .content-text-header img {
        width: 100%;
        height: auto;
    }

    .content-text {
        width: 100%;
    }
}

.second-openBtn {
    position: absolute;
    right: 0;
    top: 10px;
    z-index: 1;
    background: none;
    font-size: 40px;
    border: none;
    height: max-content;
    width: 40px;
    margin-right: 20px;
    color: #000;
}

.second-openBtn:hover {
    cursor: pointer;
    translate: 0 -5px;
    transition: 0.5s;
}


@media (min-width: 1000px) {
    .second-openBtn {
        display: none;
    }
}