* {
    box-sizing: border-box;
}

body, body a{
    margin: 0;
    color:white;
    text-decoration: none;
    font-family: "DM Sans", sans-serif;
}

.background{
    background-image: url("/img/Visualisierung-2.jpg");
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
}

.background > div{
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 30%,
        rgba(0, 0, 0, 0.7) 100%
    );
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

header{
    background-color: rgba(51, 51, 51, .7);
    width: 515px;
    min-height: 415px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 45px 37px 15px 37px;
    gap: 25px;
    text-align: center;
}

header > div:first-child {
    width: 100%;
}

header > div:first-child img {
    width: 360px;
    max-width: 100%;
    height: auto;
}

/* header img{
    width: 360px;
    height: auto;
} */

.coomingSoonText{
    font-size: 20px;
}

.contactContainer{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;

}

.email, .phone{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px
}

.email > img{
    width: 29px;
}

.phone > img{
    width: 27px;
}

footer{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
    margin-bottom: 20px;
}

footer img{
    width: 35px;
    height: auto;
}

.info, .gardenatNetLogo{
    display: flex;
    align-items: center;
}

.info {
    gap: 15px;
}

.gardenatNetLogo {
    gap: 0.4em;
}

.gardenatNetLogo img{
    width: 115px;
    height: auto;
}

/* TABLET */

@media (max-width: 1029px) {
    header {
        width: calc(100% - 64px);
        max-width: 515px;
    }

    footer {
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        text-align: center;
    }

    .info {
        justify-content: center;
        flex-wrap: wrap;
    }

    .gardenatNetLogo {
        justify-content: center;
    }
}

/* PHONE */

@media (max-width: 519px) {
    header {
        width: calc(100% - 32px);
    }

    .contactContainer{
        flex-direction: column;
        gap:15px
    }

    footer {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        text-align: center;
    }

    .info {
        flex-direction: column;
    }
    
}