* {
    box-sizing: border-box;
}

body {
    background-image: url('../img/grid.jpg');
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}

header{ 
position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    background-color: #6BA3D8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: -100;
    height: 30px;
}

nav {
    position: fixed;
    top: 20px;
    right: 20px;

}

nav a {
    color: black;
    font-size: 20px;
    font-style: italic;
    text-decoration: none;

}

a:hover{
    text-decoration: underline;
}

.button {
    background-color: black;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    color: white;
}

.name {
    position: fixed;
    top: 20px;
    left: 20px;
    color: black;
}

section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    min-height: 100vh;
    padding: 0 40px;
}


.avatar {
    width: 420px;
    flex-shrink: 0;
}

.text {
    max-width: 600px;
    text-align: center;
}

.text h1 {
    font-family: Arial, Helvetica, sans-serif;
    font-style: italic;
    font-weight: 400;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.text p {
    font-size: 2rem;
    line-height: 1.5;
    color: #333;
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 18px;
    color: #666;
}
.emoji {
    font-size: 24px;
    margin-top: -30px;
}

