/* --------- */
*{
    margin: 0;
    padding: 0;
}

.logo-img {
    width: 150px;
    height: 120px;
}

body {
    font-family: sans-serif;
    background-color: #87CEFA;
}

.rote-muschi-haare {
    width: 300px;
    height: 400px;
    border-radius: 50%;
}

.navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navigation div a {
    transition: color 0.13s;
    color: black;
    text-decoration: none;
}

.navigation div a:hover {
    color: #50a4d0;
}

.navigation div {
    display: flex;
    column-gap: 34px;
} 

.icon {
    cursor: pointer;
    font-size: 30px;
    transition: color 0.3s;
}

.icon:hover {
    color: #50a4d0;
}

.first-ctn {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    padding: 12px 30px;
}

.second-ctn {
    display: flex;
    row-gap: 44px;
    flex-direction: column;
    width: 600px;
}

.second-ctn h1 {
    font-size: 62px;
    font-weight: 400;
}

.second-ctn p {
    font-size: 18px;
    line-height: 1.5;
}

.second-ctn button {
    cursor: pointer;
    border: none;
    padding: 12px 0;
    background-color: #50a4d0;
    font-size: 20px;
    color: #111;
    border-radius: 10px;
    width: 180px;
    transition: background-color 0.3s;
}

.second-ctn button:hover {
    background-color: #6aafd4;
}

.snow--1 {
    position: absolute;
    top: 20%;
    left: 50%;
}

.snow--2 {
    position: absolute;
    top: 15%;
    left: 20%;
}

.snow--3 {
    position: absolute;
    bottom: 20%;
    left: 25%;
}    

.snow--4 {
    position: absolute;
    bottom: 10%;
    right: 20%;
}

.snow--5 {
    position: absolute;
    top: 20%;
    left: 50%;
}

.snow--6 {
    position: absolute;
    top: 50%;
    right: 50%;
}    

.snow--7 {
    position: absolute;
    top: 50%;
    left: 70%;
}










































