body {
    background: #343c86;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    letter-spacing: 2px;
    }
    img {
    border-radius: 50%;
    }
    .profile-picture {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10%;
    height: auto;
    max-width: 100px;
    }
    .profile-name {
    text-align: center;
    padding: 15px;
    }
    .links {
    text-align: center;
    margin-top: 10px;
    padding: 20px;
    border: 1px solid white;
    border-width: 2px;
    width: 290px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 40px;
    }
    a {
    text-decoration: none;
    color: white;
    transition: color 1s; 
    }
    .bottom-text {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    }
    a:hover {
    color: #000;
    background: #fff;
    }
    h1 {
        color: #ffffff;
        font-family: arial, sans-serif;
        font-size: 20px;
        font-weight: bold;
        margin-top: 0px;
        margin-bottom: 0px;
        }
    #submit-btn{
    color:rgb(255, 187, 0)
    }
    #submit-btn:hover{
    color:white;
    transition: color 1s;
    }
    button{
    background: #343c86;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    letter-spacing: 2px;
    }
    button:hover {
    color: #000;
    background: #fff;
    transition: color 1s;
    }
    /* The Modal (background) */
    .modal {
    display: block; /* Shown by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(52,60,134); /* Fallback color */
    background-color: rgba(52,60,134,0.9); /* Black w/ opacity */
    }
    .modalText{
        text-align:center;
        padding:10%;
        border:solid white 1px;
        border-radius:40px;
        margin:auto;
        /*height:50%; */
        width:75%
    }
    /* Modal Content/Box */
    .modal-content {
        background-color: rgb(52,60,134);
        color:rgb(255, 187, 0);
        margin: 20% auto; /* 20% from the top and centered */
        width: 75%; /* Could be more or less, depending on screen size */
    }
    
    /* The Close Button */
    .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    padding-right:5%;
    padding-top:1%
    }
    .close:hover,
    .close:focus {
    color: black;
    text-decoration: none;
    cursor: default;
    }
    @media screen and (-webkit-min-device-pixel-ratio:0) { 
        select,
        textarea,
        input {
          font-size: 16px;
        }
      }