.firstLink{
    display: flex;
    height: 500px;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    margin: 0 50px 10px;
    border-radius: 50px;

}

.first-link-text-container{
    flex: 1.5;
    font-size: 40px;
    color: white;
    text-align: center;
    border: 2px ;
    display: flex;
    justify-content: center;
}

.first-link-text-button{
    flex: 0.4;
    min-width: 150px;
    height: 80px;

    border-radius: 40px;
    border: 2px #b3b3b3 solid;

    font-size: clamp(18px, 2vw, 50px);
    font-weight: bold;
    color: white;

    background-color: transparent;

    cursor: pointer;
}

.first-link-img-button{
    flex: 1;
    background: none;
    cursor: pointer;
}

.first-link-img{
    width: clamp(200px, 70%, 400px);
    border: 2px #3e5afd solid;
}

.first-link-img:hover{
    opacity: .7;
}

