@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

::selection {
    background: #93e3c0;
    color: #000;
}

a {
    color: #93e3c0;
    transition: .7s;
    text-underline-offset: 0.5em;
}

a:hover {
    color: #75dbae;
    transition: .7s;
}

body {
    background: #081b29;
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
}

.header {
    width: 100%;
    padding: .5rem 2rem;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background 0.5s;
}

.logo {
    font-size: 2.5rem;
    color: #fff;
    text-decoration: none;
    font-weight: 100;
    font-family: 'Lobster', cursive;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-left: 7rem;
    margin-top: 0rem;
	margin-bottom: 0rem;
}

.logo img {
	margin-bottom: -.6rem; 
	margin-left: -.8rem;  
	width: 50px; 
	height: auto;
}

.navbar {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px 0;
    position: absolute;
    top: 70px;
    left: 0;
}

.navbar.active {
    display: flex;
}

.navbar a {
    padding: 1rem 0;
    width: 100%;
    font-size: 1.25rem;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.navbar a:hover,
.navbar a.active {
    color: #75dbae;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    align-items: flex-end;
}

.menu-toggle .bar {
    height: 3px;
    width: 25px;
    background-color: #fff;
    margin: 4px 0;
    transition: 0.4s;
}

main {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    padding: 5rem 1rem 2rem;
    margin-top: 4rem;
    text-align: center;
}

.content-left {
    width: 100%;
    max-width: 600px;
    margin-bottom: 2rem;
}

.content-left h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    margin-top: -.5rem;
    color: #75dbae;
}

.content-left h2 {
    font-size: 1.5rem;
    /* color: #75dbae; */
    margin-bottom: 1rem;
}

.content-left p {
    margin-bottom: 2rem;
    text-align: justify;
}

.content-left a:hover {
    color: #42c6c0;
    text-decoration-color: #42c6c0;
}

.buttons-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.buttons-box a {
    display: inline-flex;
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    justify-content: center;
    align-items: center;
    border: 1px solid #93e3c0;
    border-radius: 30px;
    width: 150px;
    height: 40px;
    transition: .7s;
}

.buttons-box a:hover {
    color: #000;
    background: #93e3c0;
}

.buttons-box a.active {
    background: #93e3c0;
    color: #000;
}

.buttons-box a.active:hover {
    border: 1px solid #93e3c0;
    color: #fff;
    background: transparent;
}

.content-right {
    width: 100%;
    max-width: 300px;
    margin-bottom: 2rem;
}

.content-right img {
    width: 100%;
    height: auto;
    border-radius: 150px 50px;
    filter: grayscale(100%);
    transition: .7s;
    margin-top: 0rem;
}

.content-right img:hover {
    filter: grayscale(0%);
    transition: .7s;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 0.775rem;
    padding: 0rem 0;
    width: 100%;
    background: #081b29;
    bottom: 0;
    text-align: center;
    display: none;
}

@media (min-width: 768px) {

    .menu-toggle {
        display: none;
    }

    #desktop-menu {
        display: flex;
        justify-content: flex-end;
        gap: 2rem;
    }

    .navbar {
        display: flex !important;
        flex-direction: row !important;
        position: static !important;
        top: auto !important;
        left: auto !important;
        width: auto !important;
        text-align: right !important;
        background-color: transparent !important;
        padding: 0 !important;
        margin-right: 7rem;
    }

    .navbar a {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }

    main {
        flex-direction: row;
        justify-content: space-between;
        padding: 3rem 5rem 2rem;
        text-align: left;
    }

    .content-left {
        width: 50%;
        margin-bottom: 0;
        margin-left: 4rem;
    }

    .content-left h1 {
        font-size: 4rem;
    }

    .content-left h2 {
        font-size: 2rem;
        margin-top: -1rem;
    }

    .buttons-box {
        flex-direction: row;
        justify-content: flex-start;
    }

    .content-right {
        width: 45%;
        max-width: none;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 0;
    }

    .content-right img {
        width: 100%;
        max-width: 450px;
        height: auto;
        margin-right: 0rem;
    }
}

@media (max-width: 768px) {
    .logo {
    margin-left: 0rem;
	}

    .menu-toggle {
        display: flex;
    }

    #desktop-menu {
        display: none;
    }

    .navbar {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        background-color: rgba(0, 0, 0, 0.8);
        padding: 20px 0;
        position: absolute;
        top: 70px;
        left: 0;
    }

    .navbar.active {
        display: flex;
    }

    .navbar a {
        padding: 1rem 0;
        width: 100%;
        font-size: 1.25rem;
    }
}
