@font-face
{
  font-family: "SFPro";
  src: url("fonts/SF-Pro-Display-Regular.otf") format("opentype");
}

@font-face
{
  font-family: "Horizon";
  src: url("fonts/Horizon.otf") format("opentype");
}

*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'SFPro', 'Horizon';
    overflow-anchor: none;
}

body
{
    background-color: #1f1f21;
    color: #f8f7da;
    text-align: center;
    font-family: 'SFPro';
    height: auto;
    width: 100vw;
}

.title
{
    background-color: transparent;
    color: red;
    width: 50vw;
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    padding: 1vw;
    margin-top: 10vh;
    left: 25vw;
    font-family: "Horizon";
}

.title h1
{
    font-size: 3.5vw;
    font-family: "Horizon";
}

.member_box
{
    display: flex;
    flex-direction: column;
    background-color: #f8f7da;
    width: 40vw;
    border-radius: 2.5vw;
    color: black;
    font: 'SFPro';
    justify-content: flex-start;
    padding: 2.5%;
    position: absolute;
    overflow: visible;
}

.member_box img
{
  width: auto;
  height: 50%;
  object-fit: contain;
  display: block;
  border-radius: 10%;
}

.member_box h2
{
    margin: 2.5%;
}

.member_box p
{
    font-size: 15px;
    text-align: left;
    text-indent: 5%;
}

.meet_team
{
    position: absolute;
    left: 0%
}

.meet_team button
{
    background-color: red;
    color: #f8f7da;
    border: none;
    width: 50vw;
    height: 15vh;
    border-radius: 5vw;
    padding: 1vh 2vw;
    font-size: 1.2vw;
    cursor: pointer;
    font-family: 'Horizon';
    font-size: 300%;
    text-decoration: underline;
    transition: background-color 0.05s ease;
}

.meet_team button:hover
{
    background-color: orangered;
}

.footer
{
    width: 100vw;
    height: 10vh;
    position: absolute;
}