body {
    background-color: #6C485C;
    color: white;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}


button {
    border: none;
}

h1 {
    margin-top: 30px;
    margin-bottom: 50px;
    font-size: 55px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 24px;
    margin-bottom: 10px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 30px 0 50px 0;
}

.header-container h1 {
    font-size: 55px;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    text-align: center;
}

.header-container a {
    position: absolute;
    left: 0;
    padding: 10px 16px;
    font-family: 'Exo 2', sans-serif;
    text-decoration: none;
    background-color: #EEE8DC;
    color: black;
    border-radius: 6px;
    border: 1px solid #000;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.header-container a:hover {
    background-color: #d49eb9;
    color: white;
}


.workshop-card {
    font-family: 'Roboto', sans-serif;
    background-color: #eee8dc3c;
    border: 7px solid #eee8dccf;
    border-radius: 35px;
    padding: 25px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.216);

}

.workshop-card:hover {
    transform: scale(1.02);
}

.workshop-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.duration {
    font-size: 24px;
    margin: 15px 0 0 0;
}

.price {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: white;
}

.button {
    padding: 10px 16px;
    border-radius: 6px;
    font-family: 'Exo 2', sans-serif;
    font-size: 18px;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.button-secondary {
    background-color: #EEE8DC;
    color: black;
}

.button-secondary:hover {
    background-color: #d49eb9;
    color: white;
}