body {
    background-color: rgba(0, 0, 0, 0.911);
    color:darkgray;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    overflow-y: scroll;
    overflow-x: hidden;
    box-sizing: border-box;
    
}


.navbar {
    display: flex;
    justify-content:left;
    align-items: center;
    background: #222;
    padding-top: 5px;
    padding-bottom: 5px;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.dropdown-content {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.dropdown-content li {
    margin: 0;
    display: flex;
}

.dropdown-content a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    padding: 8px 12px;
    transition: 0.3s;
}

.dropdown-content a:hover {
    background: #555;
    border-radius: 5px;
}

.menu-btn {
    font-size: 24px;
    background: none;
    color: white;
    border: none;
    cursor: pointer;
    display: none;
}

@media screen and (max-width: 768px) {
    .menu-btn {
        display: block;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        top: 44px;
        left: 0;
        background: #222;
        flex-direction:column;
        width: 200px; 
        
        text-align: center;
    }

    .dropdown-content li {
        margin: 0;
    }

    .dropdown-content.show {
        display:flex;
        position:absolute;
    }
}
.profile_icons {
    display:flex;
    gap: 20px;
    align-items:center;
    position:absolute;
    right: 20px;
}

.profile_icons img {
    width: 35px;
    height: 35px;
    transition: transform 0.3s ease;
}

.profile_icons img:hover {
    transform: scale(1.1);
}

.title  {
    margin: auto;
    width: 100%;
    padding-right: 900px;
    font-size: 72px;
    font-weight: bold;
    color: #333;
    justify-content: center;
    text-align: center;
    display: block;
}

.subtext {
    font-size: 3rem;
    color: #bab6b6;
    text-align: center;
    margin: 30px;
    
}

.content_text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #bab6b6;
    text-align:left;
    margin: 0 auto;
}
.content {
    margin: auto;
    display: block;
    width: 100%;
    max-width: 600px;
    justify-content: center;
    text-align: center;
    
}

h3 {
    text-align: left;
    font-size: 2rem;
}