/* 
action: 
1. fix the picture as right now only a small portion is shown

*/

a:link {
    text-decoration: none;
}

.header {
    background-color: #73AD21;
    font-weight: bold;
    font-family: Tahoma, sans-serif;
    font-size: largest;
    padding-top: 1rem;
    padding-bottom: 1rem;
    color: white;
    display: flex;
    justify-content: center;

}
.main-image {
    background-image: url('./eiffel.jpg');
    height:1000px;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.main-buttons {
    display: flex;
    justify-content: center;
    /* flex-direction: column; */
}

.BigButtons {
    font-weight: bold;
    font-family: Tahoma, sans-serif;
    font-size: large;
    border-radius: 25px;
    border:  5px solid yellow;
    background: #73AD21;
    padding: 1rem 0; 
    width: 200px;
    height: auto;
    text-align: center;
    margin: 10px;
    opacity: 0.9;
    cursor: pointer;
}

.sub-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.SubButtons {
    font-weight: bold;
    font-family: Tahoma, sans-serif;
    font-size: medium;
    border-radius: 10px;
    border:  5px solid yellow;
    background: #73AD21;
    padding: 2px;
    padding-left: 2px;
    padding-right: 2px; 
    width: auto;
    height: auto;
    text-align: center;
    margin: 10px;
    opacity: 0.9;
}






