/* Taustaväri ja fontit */

@font-face {
    font-family: reporter;
    src: url('Reporter.ttf');
}

body {
    background-color: #BDD8E6; /* Vaaleansininen taustaväri */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Headerin tyyli */
header {
    position: relative;
}

.header-container {
    width: 100%;
    height: 250px;
    position: relative;
}

.background-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.profile-image {
    position: absolute;
    top: 5px;
    left: 15px;
    width: 220px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    border: 5px solid white;
}

.number {
    font-family: reporter;
    position: absolute;
    top: 50px;
    right: 40px;
    font-size: 10em;
    color: #000011;
    font-weight: bold;
    text-shadow: -2px 0 white, 0 2px white, 2px 0 white, 0 -2px white;
}

/* Kuvat */

.oikea {
    float: right;
    width: 150px;
    height: 451px;
    object-fit: cover;
    border-radius: 15px;
    border: 1px solid white;
    margin-left: 5px;
}  

.vasen {
    float: left;
    width: 150px;
    height: 451px;
    object-fit: cover;
    border-radius: 15px;
    border: 1px solid white;
    margin-right: 18px;
}

/* Sisällön tyyli */
.content {
    max-width: 800px;
    margin: 18px auto;
    background-color: #6099D0; /* Tummempi sininen tausta */
    color: black;
    padding: 20px;
    border-radius: 10px;
}

h1 {
    text-align: center;
    font-size: 2.5em;
}

h2 {
    font-size: 1.8em;
    font-weight: bold;
    margin-top: 20px;
    color: #EEEEFF; /* Valkoinen väri alaotsikoille */
}

h3 {
    text-align: center;
    font-size: 11px;
    text-color: #999999;
    font-weight: 100;
}


h4 {
    text-align: center;
    font-family: reporter;
    font-size: 8em;
    color: #000000; /* musta */
    margin-top: 10px;
    margin-bottom: 10px;
}

p {
    font-size: 1.2em;
}

p:first-of-type {
    margin-top: 0;
}
