* {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}

body {
    background-color: #13293d;
    width: 100%;
    height: auto;
    color: white;
}

header {
    width: 100%;
    height: 80px;
    display: flex;
    position: relative;
}

header h1 {
    position: relative;
    margin-top: 25px;
    left: 30px;
    font-size: 22px;
}

header button {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: #2a628f;
    border: none;
    border-radius: 6px;
    outline: none;
    right: 20px;
    top: 20px;
    color: white;
    transition: ease 0.3s;
}

header button:hover {
    cursor: pointer;
    opacity: 0.6;
}

body ul {
    width: calc(100% - 40px);
    height: auto;
    position: relative;
    left: 20px;
}

body ul li {
    background-color: #1b3450;
    width: 100%;
    height: 50px;
    border-radius: 6px;
    margin-bottom: 5px;
    transition: ease 0.3s;
}

body ul li a {
    display: block;
    position: relative;
    color: white;
    width: calc(100% - 50px);
    height: 100%;
}

body ul li:has(a:hover) {
    cursor: pointer;
    opacity: 0.6;
}

body ul li a span#title {
    display: block;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
}

body ul li button {
    position: absolute;
    margin-top: -50px;
    right: 0;
    width: 50px;
    height: 50px;
    color: rgb(199, 80, 80);
    background-color: transparent;
    outline: none;
    border: none;
    transition: ease 0.3s;
}

body ul li button:hover {
    cursor: pointer;
    opacity: 0.6;
}

body ul li a span#capo {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
}



#overlay {
    position: fixed;
    inset: 0;
    background: #060c133d;
    backdrop-filter: blur(5px);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
    z-index: 10;
}

#modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
    z-index: 11;
}

.modal-content {
    background: #1b3450;
    padding: 25px;
    border-radius: 12px;
    width: calc(500px - 50px);
    height: auto;
}

.modal-content input {
    display: block;
    width: calc(100% - 20px);
    height: 45px;
    background-color: rgba(0,0,0,0.2);
    margin-top: 5px;
    border: none;
    outline: none;
    border-radius: 6px;
    padding: 0 10px;
    color: white;
    font-size: 15px;
    font-weight: 300;
}

.modal-content input::placeholder {
    font-style: italic;
    color: white;
    opacity: 0.3;
}

.modal-content .btnDiv {
    width: 100%;
    height: 40px;
    margin-top: 5px;
}

.modal-content .btnDiv button {
    width: calc(50% - 2.5px);
    height: 40px;
    background-color: #2a628f;
    border-radius: 6px;
    border: none;
    outline: none;
    color: white;
    font-size: 15px;
    font-weight: 300;
    transition: ease 0.3s;
}

.modal-content .btnDiv button#closeModal {
    background-color: #2a628f52;
}

.modal-content .btnDiv button:hover {
    cursor: pointer;
    opacity: 0.6;
}

.show {
    opacity: 1 !important;
    pointer-events: auto !important;
}

@media only screen and (max-width: 1000px) {
    #modal {
        display: block;
        align-items: baseline;
        justify-content: baseline;
    }

    .modal-content {
        width: calc(100% - 90px);
        margin-top: 20px;
        margin-left: 20px;
    }
}