

body{
	font-family: "CompagnonLight";
	background-color: rgb(255, 152, 114);
}

* {
    margin: 0;
    padding: 0;
    font-family: "CompagnonLight";
}



h1 {
    text-align: left;
    font-size: 8rem;
    color: black;
    margin: 10px 0 10px;
    text-transform: uppercase;
    letter-spacing: px;
    display: inline-block;

}

.container {
    margin: auto;
    padding: 20px;
}

.aufgaben {
    display: grid;
    grid-template-columns: auto;
    align-items: left;
}

.box {
    border-radius: 0px;
    padding: 0px;
    display: flex;

}

h2 {
    font-size: 5rem;
    color: blue;
    text-transform: lowercase;
}

.img {
    width: 30%;
    height: auto;
}

.box:hover {
    transform: rotate(3deg) scale(1.05); 
    background-color: #f0f0f0; 
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.box::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 100px;
    height: 100px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    z-index: 0;
}


