@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Comfortaa:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #F7F7F7;
    color: #100303;
    overflow-x: hidden;
    overflow-y: hidden; /* Prevent vertical scrolling */
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #43D8C9;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

header .logo {
    font-size: 1.5em;
    font-weight: bolder;
    white-space: nowrap;
    cursor: pointer;
}

header .logo-link{
        text-decoration: none;
        color: #100303;
}

header .domain {
    color: #F7F7F7;
}

nav {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    padding-right: 50px;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #100303;
    font-weight: 500;
    transition: color 0.3s;
    white-space: nowrap;
}

nav a:hover {
    color: #F7F7F7;
    transition: all 0.3s ease 0s;
}

nav .active{
    color: #F7F7F7;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background-color: #43D8C9;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 40px;
}

/* Main Content */
main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 100px); /* Adjust height to fit the screen minus header and footer */
    text-align: center;
    margin: 0 20px;
    box-sizing: border-box;
    padding-left: 10px;
    padding-right: 10px;
}

main p {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.9em;
    margin: 20px 0;
    max-width: 600px;
    word-wrap: break-word;
    margin-top: 50px;
    line-height: 1.5em;
}

main .A{
    background-color: #bf88c5;
}

main .B{
    background-color: #FFDD57;
}

main .C{
    background-color: #43D8C9;
}

main .D{
    background-color: #bf88c5;
}

main button {
    padding-top: 15px;
    padding-bottom: 12px;
    padding-right: 21px;
    padding-left: 21px;
    background-color: #281c1c;
    color: #F7F7F7;
    border: none;
    border-radius: 30px;
    font-size: 1em;
    cursor: pointer;
    margin-top: 15px;
    align-content: center;
    text-align: center;
}

main button:hover {
    background-color: #403535;
    transition: all 0.3s ease 0s;
    color: #F7F7F7;
}

/* Footer */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #403535;
    color: #F7F7F7;
    text-align: center;
    padding: 5px 0;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

footer a {
    color: #ffdd57;
    text-decoration: none;
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 768px) {
    nav {
        display: none;
        flex-direction: column;
        background-color: #43D8C9;
        position: absolute;
        top: 60px;
        right: 20px;
        width: 150px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    nav a {
        margin: 10px 0;
    }

    nav.active {
        display: flex;
        padding-left: 5%;    
    }

    .hamburger {
        display: flex;
    }

    main {
        height: calc(100vh - 140px); /* Adjust height on mobile to fit footer */
    }
}
