div.hero {
    background-image: url("Hero-Background.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgb(227, 227, 227);
    background-position-x: center;
    background-position-y: top;

    display: flex;
    position: relative;
    align-items: center;
    height: 60vw;
    overflow: hidden;
}
div.hero-name {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0px;
    width: 48vw;

    color: #262626;
    font-size: 8.5vw; /* Adjusts the size of the text */
    font-family:Georgia, 'Times New Roman', Times, serif;
    text-align: left; /* Centers the title horizontally */
    margin: 0px 0px; /* Adds some vertical margin */
}
div.hero-first-name {
    display: inline;
    color: #595959;
}
div.hero-last-name {
    font-weight: bold;
    display: inline;
    color: #262626;
}
div.hero-text {
    position: absolute;
    bottom: 0;
    right: auto;
    padding: 0px;
    width: 100vw;
    background-color: rgba(159, 159, 159, 0.8);

    color: #262626;
    font-size: 6vw; /* Adjusts the size of the text */
    font-family: Calibri, 'Trebuchet MS', sans-serif;
    font-weight: bold;
    text-align: center; /* Centers the title horizontally */
    margin: 20px 0; /* Adds some vertical margin */
}

div.text {
    text-align: center;
    color: #262626;
    font-family: Calibri, 'Trebuchet MS', sans-serif;
    font-size: 20px;
    margin: 10px;
}
h1 {
    text-align: center;
    font-family: Calibri, 'Trebuchet MS', sans-serif;
    font-size: 80px;
    font-weight: bold;
    margin: 0px;
    font-variant: small-caps;
    letter-spacing: 2px;
}
h2 {
    text-align: center;
    font-family: Calibri, 'Trebuchet MS', sans-serif;
    font-size: 40px;
    font-weight: bold;
}
h3 {
    text-align: center;
    font-family: Calibri, 'Trebuchet MS', sans-serif;
    font-size: 30px;
    font-weight: bold;
    margin-top: 5px;
    margin-bottom: 5px;
}

body {
    margin: 0;
}
div.main {
    margin: auto;
    padding: 1vh;
    place-items: center;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}

div.widget {
    background-color: rgb(159, 226, 191);
    margin: 5px;
    display: inline-flex;
    border-radius: 20px;
    overflow: hidden;
    flex-wrap: wrap;
    border: 2px solid black;
    transition: transform 0.3s;
}
div.widget:hover {
    transform: scale(1.05);
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.5));
    cursor: pointer;
}
div.widget-picture {
    width: 300px;
    height: 300px;
    display: block;
    overflow: hidden;
}
div.widget-description {
    width: 300px;
    height: 300px;
    display: block;
}
img.responsive-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
@media (max-width: 650px) {
    div.widget {
        max-width: 300px;
    }
    h1 {
        font-size: 60px;
    }
}
@media (max-width: 480px) {
    h1 {
        font-size: 40px;
    }
}

@media (min-width: 1860px) {
    div.main {
        width: 1860px;
    }
}

@media (max-height: 80vw) {
    div.hero {
        height: 75vh;
    }
    div.spacer {
        height: 0.75vh;
        background-color: black;
    }
    div.text {
        font-size: 20px;
    }
}
@media (min-height: 80vw) {
    div.hero {
        height: 60vw;
    }
    div.spacer {
        height: 0.6vw;
        background-color: black;
    }
    div.text {
        font-size: 20px;
    }
}