* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #102218;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

header {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

nav ul {
    display: flex;
    justify-content: flex-start;
    list-style: none;
    padding: 0;
}

nav li {
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: white;
    font-size: 1em;
}

.logo-container {
    background-color: #B473EA;
    padding: 40px 80px;
    font-size: 2em;
    color: black;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    position: absolute;
    top: 20px;
    right: 20px;
    height: 250px;
}


main {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.content {
    max-width: 600px;
}

h1 {
    font-size: 2.5em;
    line-height: 1.2em;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    width: fit-content;
}

.button-space {
    display: inline-block;
    margin-left: 10px;
}

.buttons {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: 10px;
}

.get-in-touch, .arrow {
    background-color: #B473EA;
    color: black;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 50px;
    margin-left: 10px;
}

.get-in-touch {
    display: inline-block;
}

.arrow {
    display: inline-block;
    transform: rotate(330deg);
}

.scroll-text {
    position: absolute;
    right: 20px;
    bottom: 20px;
    writing-mode: vertical-rl;
    text-align: center;
    font-size: 0.8em;
    color: white;
}

@media (min-width: 768px) {
    main {
        flex-direction: row;
        justify-content: space-between;
    }

    .content {
        max-width: 50%;
        text-align: left;
    }

    h1 {
        font-size: 3em;
    }

    .buttons {
        justify-content: flex-start;
    }
}
