:root {
    font-size: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: cronde;
    src: url('resources/cronde.ttf') format('truetype');
}
body {
    font-family: Arial, sans-serif;
    background-image: url(resources/align.png);
    background-size: cover;
}

img {
    width: 512px;
}

p {
    margin-bottom: 16px;
}

.container {
    max-width: 800px;
    margin: 50px auto;
    background: #f2e1ffa7;
    padding-top: 24px;
}

h1 {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 20px;
    color: rgb(171, 20, 188);
    font-family: cronde;
}

.tabs {
    position: relative;
}

input[type="radio"] {
    display: none;
}

label {
    display: inline-block;
    padding: 16px;
    width: 128px;
    background: #ffffffa8;
    cursor: pointer;
}

label:hover {
    background: #c800ff7f;
}

input[type="radio"]:checked + label {
    background: #9500ff91;
    color: #fff;
}

.tab-content {
    display: none;
    padding: 20px;
    font-size: 1.2rem;
}

#tab1:checked ~ #content1,
#tab2:checked ~ #content2,
#tab3:checked ~ #content3 {
    display: block;
}

h2 {
    margin-bottom: 10px;
}

p {
    line-height: 1.6;
}