@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
*{
    font-family: 'Poppins', 'sans-serif';
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    min-height: 100vh;
    background: linear-gradient(to bottom right, #76c8e9, #00212b);
    overflow: hidden;
}

.menu {
    float: left;
    width: 150px;
}

.menu-item {
    height: 40px;
    background-color: rgb(49, 49, 49);
    margin-bottom: 5px;
    cursor: pointer;
    overflow: hidden;
    color: white;
}
.menu-item h2 {
    margin-left: 5px;
    margin-bottom: 5px;
}
.menu-item i {
    position: absolute;
    background-color: white;
    height: 2px;
    width: 135px;
    margin-left: 5px;
    margin-top: -3px;
    border-radius: 5px;
}

.menu-item p {
    margin-left: 5px;
    margin-bottom: 8px;
    color: white;
}

.expanded {
    height: 500px !important;
}

.edit {
    position: relative;
    display: flex;

}
.edit form {
    position: relative;
    display: block;
    margin-left: 200px;
    margin-top: 10px;
    background: rgb(49, 49, 49);
    border-radius: 15px;
    height: 300px;
    width: 320px;
    text-align: center;
}

.edit form input,
textarea {
    background: rgba(255, 255, 255, 0.5);
    border: none;
    font-size: 20px;
    border-radius: 10px;
    margin-bottom: 5px;
    margin-top: 10px;
}

.edit form .des {
    font-size: 15px;
    height: 100px;
    width: 252px;
    resize: none;
}
.edit form .url {
    font-size: 13px;
    height: 30px;
    width: 252px;
    margin-top: 5px;
}
.edit form button {
    background: rgba(255, 255, 255, 0.5);
    border: none;
    border-radius: 15px;
    height: 40px;
    width: 80px;
    margin-top: 15px;
    cursor: pointer;
}

/***/
.project-box{
    position: relative;
    background: linear-gradient(to bottom right, #003444, #346a80);
    width: 300px;
    height: 300px;
    border-radius: 20px;
    margin: 10px;
    transition: 0.3s;
    align-items: center;
    justify-content: center;
    justify-items: center;
    transition: var(--tran-04);
}
.project-box h2{
    color: #ffffff;
    position: relative;
    text-align: center;
    padding-top: 20px;
    
}
.project-box h5{
    color: #FFF;
    position: relative;
    text-align: center;
    padding-top: 20px;
    margin-left: 10px;
    margin-right: 10px;

}
.project-box button {
    color: #fbfcfd;
    padding: 10px 25px;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 20px;
    outline: none;
    cursor: pointer;
    position: absolute;
    top: 75%;
    left: 50%; /* Középre igazítás vízszintesen */
    transform: translateX(-50%); /* Az elem fele tolása balra a szülő szélességének felétől */
}
.project-box button h3 {
    display: block;
    font-size: 12px;
    font-weight: bold;
}
/***/