@font-face {
    font-family: Triumph Brokman;
    src: url(TriumphBrokman-Bold.otf);
    font-weight: bold;
}
@font-face {
    font-family: Triumph Brokman;
    src: url(TriumphBrokman-Regular.otf);
    font-weight: normal;
}

:root{
    --text-color: black;
    --bg-color: white;
    --accent-color: #cd192d;
}


html, body{
    height: 100%;
    width: 100%;
    margin: 0;
    background: white;
    font-family: 'Triumph Brokman';
    font-weight: normal;
}

body{
    display: flex;
    align-items: center;
    flex-direction: column;
}

.line{
    width: 10%;
    height: 3px;
    background-color: var(--accent-color);
}

a{
    color: var(--accent-color);
    text-decoration: none;
}
h1{
    font-size: 4.4vw;
}
ul {
    list-style: none;
  }
  ul li::before {
    content: "●";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
    color: var(--accent-color); 
    font-weight: bold; 
    display: inline-block;
    width: 1em;
    margin-left: -1em; 
  }

.content{
    width: 52%;
    font-size: 1.6vw;
    margin-top: 3.5%;
}

.cta-container{
    text-align: center;
    margin-top: 2%;
    font-size: 1.8vw;
}
.cta{
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 5% 6%;
    cursor: pointer;
}


@media screen and (max-width: 480px) {
    h1{
        font-size: 6.2vw;
    }
    .line{
        width: 15%;
    }

    .content{
        width: 88%;
        font-size: 14px;
        margin-top: 8%;
    }

    .cta-container{
        font-size: 14px;
    }

    li{
        margin-bottom: 3%;
    }
}

@media screen and (min-width:600px) and (max-width: 980px) and (orientation:landscape) {
    
    .line{
        margin-bottom: 2px;
    }
    .content{
        margin-top: 0;
        width: 60%;
    }
    .cta-container{
        margin-top: 0;
    }
}