* {
    box-sizing: border-box;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
}

.main {
    display: flex;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
    padding: 50px;
}

.logo-image {
    width: clamp(100px, 15vw, 100px);
    height: auto;
    margin-bottom: 50px;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    height: clamp(300px, 15vh, 400px);
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.hero-container .slamdam-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.hero-container .hero-text {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    font-size: clamp(24px, 5vw, 50px);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

.main-text-container {
    margin-block: 50px;
    text-align: center;
    font-size: 12px;
}

footer .contact-header {
    font-size: small;
    margin-right: 10px;
}

footer .contact-text {
    font-size: small;
}

.contact-button {
    font-size: large;
    padding-inline: 10px;
    padding-block: 5px;
    background-color: white;
    border: 1px solid rgb(171, 171, 171);
    border-radius: 10px;
    cursor: pointer;
}

/* Medias */
@media screen and (max-width: 1024px) {
    @media screen and (max-width: 768px) {
        html {
            font-size: 10px;
        }
    }

    @media screen and (max-width: 480px) {
        .main-text-container {
            font-size: 8px;
        }

        .contact-button {
            font-size: 13px;
        }
    }
}