*{
    margin: 0;
    padding: 0;
}

body{
    background-color: var(--main-background-color);
}

.header{
    min-height: 90vh;
    width: 100%;
    background-color: var(--main-background-color);
    position: relative;
}

.background-image{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 67%;
    bottom: 0;
    left: 0;
}

.background-image img{
    position: absolute;
    height: auto;
    width: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    bottom: 0;
}

.text-box{
    width: 100%;
    color: var(--white);
    position: absolute;
    text-align: center;
    font-family: var(--font-paragraph);
    top: 50px;
    text-shadow: var(--main-background-color) 0 0 10px;
}

.text-box h1{
    font-size: 62px;
    padding: 20px;
}

.text-box p{
    margin: 10px 0 40px;
    font-size: 30px;
    color: var(--white);
}

.ico-link-external:after{
    background-image: url(/icon/external-link.svg);
    display: inline-block;
    width: 15px;
    height: 15px;
    content:"";
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    margin-left: 2px;
}
.ico-link-external-dark-on-hover:hover:after{
    background-image: url(/icon/external-link-dark.svg);
}

@media (max-width: 600px) or (max-height: 600px){
    .text-box h1{
        font-size: 30px;
    }
    .text-box p{
        font-size: 20px;
    }
}
