html,
body {
    height: 100%;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 0;
    box-sizing: border-box;
}

/* The main container of the page */
.container-colums {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.container-rows {
    width: 100vw;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 5vw
}


.header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding: 0vw 1vh 0vw 1vh;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 2vh;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    max-width: 5vw;
    height: auto;
}

.header span {
    font-size: 1vw;
    font-weight: bold;
    color: #2b1bbb;
}


.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 1vw;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.bottom-buttons {
    display: flex;
    justify-content: center;
    align-items: start;
    /* Aligns the item at the top */
    gap: 2vw;
}

.bottom-buttons button {

    flex-grow: 1;
    margin: 2vw 0;
    font-size: 1vw;
    font-weight: 500;
    border: 0;
    border-radius: 1vw;
    max-width: 18vw;
    min-width: 18vw;
    height: 17vh;
    box-shadow: rgba(45, 35, 66, 0.4) 0 2px 4px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #2B1BBB 0 -3px 0 inset;

}

.right-btn {
    /* background-image: linear-gradient(144deg,#2B1BBB, #5B42F3 40%,#00DDEB); */
    background-image: linear-gradient(180deg, #3653EA 0%, #8210F4 100%);
    color: #FFFFFF;
}

.center-btn {
    /* background-image: linear-gradient(144deg,#2B1BBB, #00DDEB 80%,#5B42F3); */
    background-image: linear-gradient(180deg, #3653EA 0%, #8210F4 100%);
    color: #FFFFFF;

}

.left-btn {
    /* background-image: linear-gradient(144deg,#00DDEB, #5B42F3 60%,#2B1BBB); */
    background-image: linear-gradient(180deg, #3653EA 0%, #8210F4 100%);
    color: #FFFFFF;
}

.contac-button {
    flex-grow: 1;
    margin: 2vw 0;
    background-image: linear-gradient(144deg, #2B1BBB, #5B42F3 30%, #00DDEB);
    box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
    color: #FFFFFF;
    font-size: 1vw;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border: none;
    border-radius: 0.5vw;
    max-width: 10vw;
    height: 4vh;
    transition: background-color 0.3s;
    cursor: pointer;
}

.contac-button:hover {
    background-image: linear-gradient(144deg, #5c4fd5, #8d83d2 50%, #63d9e1);
}


.bottom-buttons button:hover {
    background-image: linear-gradient(144deg, #5c4fd5, #8d83d2 50%, #63d9e1);
    transform: translateY(-0.3vw);

}

.img-icon {
    max-width: 5vw;
}

.button-link{
    display: inline-block;
    padding: 1vw 10vh;
    margin: 1vw 1vh;
    background-color: rgb(43, 27, 187);
    color: white;
    text-decoration: none; 
    border: 0.03vw solid black;
    border-radius: 2vw;
    font-size: 2vw;
    text-align: center;
    cursor: pointer;

} 



/* Adaptations for small screens - mobail */
@media (max-width:500px) {
    .bottom-buttons {
        flex-direction: column !important;
        align-items: center !important;
    }

    .bottom-buttons button {
        margin: 2vw 0;
        font-size: 9pt;
        height: 10vh;
        max-width: 70vw;
        width: 50vw;
    }

    .image {
        padding-bottom: 5vh;
    }

    .header a {
        font-size: 10pt;
        width: 20vw;
    }

    .header div span {
        font-size: 10pt;
    }

    .header div img {
        max-width: 10vw;
    }

    .container-rows {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .img-icon {
        max-width: 15vw;
    }

}