* {
    box-sizing: border-box;
    margin: 0;
    font-family: Lilita One;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url('./img/5_background/first_half_background.png');
    color: #ff8400;
    font-size: 28px;
    width: 80%;
    margin: auto;
}

h1 {
    font-size: 60px;
}

h2 {
    text-decoration: underline;
    text-decoration-color: lightyellow;
    font-size: 32px;
    font-style: italic;
    font-weight: 500;
}

a {
    color: #ff8400;
    text-decoration: none;
    font-size: 24px;
}

a:hover {
    color: #894701;
}

p {
    margin-top: 10px;
    margin-bottom: 10px;
}

.content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}