body {
    background: rgb(4, 48, 125);
    color: white;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.title {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px;
}

.name {
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-size: 4.5em;
    margin-left: 20px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

    /* media if mobile */
    @media only screen and (max-width: 736px) {
        h1 {
            font-size: 2.5em;
        }

        .date {
            font-size: 2.5em;
        }

        .btn-field {
            flex-direction: column;
        }
      }

      @media only screen and (min-width: 736px) {
        .btn-field {
            flex-direction: row;
        }

        .date {
            font-size: 3.5em;
        }
      }

.container {
    margin-top: 2%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hry {
    font-size: 4.5em;
    margin-left: 20px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

a {
    text-decoration: none;
    margin-left: 20px;
    margin-right: 20px;
}

h2 {
    text-decoration: none;
    color: white;
    
}

.btn-field {
    display: flex;

    align-items: center;
    justify-content: center;
    margin-top: 150px;

    @media (min-width: 768px) {
        flex-direction: column; 
    }
}