body, html {
    font-family: 'Fredericka the Great', cursive, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom right, rgb(178,169,145), rgb(198,189,165));
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    height: auto;
}

.website-container {
    width: 80%;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;      
}

h1 {
    margin-top: 20px;
    text-align: center;
}

h2 {
    margin: 20px 0;
    flex: 1;
    text-align: center;
}

iframe {
    display: block;
    margin: 5px;
    justify-content: center;
    align-items: center;
}

.icon {
    display: flex;
    margin: 20px;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 30px;
    padding: 10px 20px;
    background: linear-gradient(45deg, #7f3521, #404c49);
    border-radius: 20px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    font-size: 0.8em;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    text-decoration: none;
  }


.icon:hover {
    transform: translateY(-5px);
    box-shadow: 0px 7px 20px rgba(0, 0, 0, 0.2);
  }