body{
    margin:0;
    font-family:"Lato", sans-serif;
    background-color: #000;
    color:white;
}
.red{
    background:#dd3333;
}
.content{
    max-width:1024px;
    overflow:hidden;
    margin-left:auto;
    margin-right:auto;
}

.content h1{
    padding-top:30px;
}

.success-info{
    text-align: center;
    border: 1px solid;
    padding: 0.6%;
    border-radius: 20px;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: large;
}

.button{
    padding:5px;
    border:1px solid;
}

a:link {
  text-decoration: none;
  color:inherit;
}

a:visited {
  text-decoration: none;
  color:inherit;
}

a:hover {
  text-decoration: none;
  color:inherit;
}

a:active {
  text-decoration: none;
  color:inherit;
}
html{
    scroll-behavior: smooth;
}

@media only screen and (min-width: 710px){
    /* Scrollbar */
    /* width */
    ::-webkit-scrollbar {
      width: 5px;
    }
    
    /* Track */
    ::-webkit-scrollbar-track {
      background: #dd3333; 
    }
     
    /* Handle */
    ::-webkit-scrollbar-thumb {
      background: #000; 
    }
}
@media only screen and (max-width: 1050px){
    .content{
        width:92%;
        margin-right:4%;
        margin-left:4%;
    }
}