
body{
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}
.main-div{
    /*background-color: black;*/
    color: white;
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    background-image: url('assets/bg4.jpg');
}

.content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}
.insideContent {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.bigTitle {
    font-size: 70px;
    text-align: center;
    color: #f12020;
    padding: 2% 2% 1% 2%;
    margin: 0;
}
.emptyDiv {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #00000036;
}
a.dynamic-link {
    color: #e22a2a;
}
.title {
    font-size: 35px;
    font-weight: 300;
    margin-top: 0%;
}
.button-text {
    font-size: 20px;
    margin-right: 13px;
    width: auto;
    text-align: center;
}
.svg {
    width: auto;
}
.bottom-content {
    font-size: 25px;
    align-content: center;
    text-align: center;
    line-height: 130%;
}
.button {
    font-weight: bold;
    background-color: red;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-around;
    align-items: center;
    padding: 10px 20px 10px 20px;
    width: auto;
    color: white;
    cursor: pointer;
    margin: 2%;
    border-radius: 20px;
    animation: beat 1.5s infinite;
    border: 2px solid grey;
}
@keyframes beat{
    from{
     transform:scale(1.1)
    }
    50%{
       transform:scale(1)
    }
    to{
      transform:scale(1.1)
    }
  }

  @media (max-width: 1000px){

    .title {
        font-size: 35px;
        font-weight: 300;
        margin-top: 5%;
        width: 100%;
        text-align: center;
    }
    .insideContent {
        width: 96%;
    }
  }
  @media (max-width: 800px){
    .bigTitle {
        font-size: 3.1em;
    }
    .main-div{
        background-position: top;
    }
    .title {
        font-size: 22px;
    }
    .bottom-content {
        font-size: 17px;
    }
    .button-text {
        font-size: 16px;
    }
  }
  @media (max-width: 450px){
    .bottom-content {
        font-size: 14px;
    }
    .title {
        font-size: 20px;
    }
    .bigTitle {
        font-size: 2.5em;
    }
  }
  