body {
    margin: 0;
    padding: 0;
    font-family: 'Comfortaa', sans-serif;
    background-color: #110a26;
}

header {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #110a26;
    justify-content: space-between;
}

.logo {
    font-size: 44px;
    color: #FAFAFA;
    position: absolute;
    left: 200px;
    top: 125px;
}

.button-container {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 20px;
    color: #FAFAFA;
    font-size: 16px;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #d8cef1;
}

.dropdown {
    display: none;
    position: relative;
    margin-right: 10px;
}

.dropbtn {
    background-color: #ADD8E6;
    color: white;
    padding: 10px 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #110a26;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: #FAFAFA;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: right;
}

.dropdown-content a:hover {
    background-color: #1c1436;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #B0C4DE;
}

.signup-btn {
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.signup-btn:hover {
    background-color: #B0C4DE;
}

.center-text {
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 50px;
}

.sub-text {
    font-size: 28px;
    margin-top: 20px;
    color: #FAFAFA;
}

@media only screen and (max-width: 600px) {
    .nav-links {
        display: none;
    }
    .dropdown {
        display: inline-block;
    }
    .center-text {
        font-size: 32px;
    }
    .sub-text {
        font-size: 20px;
    }
    .button-container {
        flex-direction: row;
        gap: 10px;
    }
}