/*
Generic code
*/
body {
    margin: 0;
    font-family: sans-serif;

}

/*
Header Area
*/

.background {
    background-image: linear-gradient(rgba(0, 38, 255, 0.5),
            rgba(165, 59, 59, 0.5)), url("sdfsdf.png");
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60vh;
    flex-wrap: wrap;
    color: white;
}

.homenav {
    padding: 5%;
    display: flex;
    justify-content: center;
    gap: 10%;
    align-items: center;
    font-size: 20px;
    letter-spacing: 10px;
    flex-wrap: wrap;
    min-width: 250px;
    width: 60vw;
}

.homenav a {
    text-decoration: none;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    transition: 0.5s;
}

.homenav a:hover {
    color: #230c4d;
}

.titel {
    user-select: none;
}

/*
Main Site
*/

.container {
    text-align: center;
    width: 70%;
    display: flex;
    justify-content: space-around;
    margin: auto;
    flex-wrap: wrap;
    margin-top: 3%;
}