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

button {
    all: unset;
}

a {
    text-decoration: none;
    color: black;
}

p {
    line-height: 1.7;
}

.announcement {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient( to top, #767676, #292B31);
    color: #ffffff;
    padding: 100px 50px;
}


.logo {
    height: 220px;
    width: 220px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin-bottom: 50px;

}

.message h1 {
    text-transform: uppercase;
    margin-bottom: 30px;
}

.message h2 {
    margin-bottom: 20px;
}

.icon {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background-color: #ffffff;
    padding: 5px;
    margin-right: 10px;
}

.ctas {
    margin-bottom: 70px;
}

.cta {
    display: flex;
    align-items: center;
    height: 45px;
    background-color: #7FBC3A;
    border-radius: 50px;
    border: 1px solid #ffffff;
    padding: 0 15px;
    margin-bottom: 10px;
}

.impressum h3 {
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .announcement {
        height: 100vh;
        width: 100vw;;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .logo {
        margin-right: 50px;
    }

    .ctas {
        display: flex;
        margin-bottom: 30px;
    }

    .cta {
        margin-right: 30px;
        transition: 0.2s;
    }

    .cta:hover {
        transform: scale(110%);
    }
}