.start{
    border: solid;
    font-size: 24px;
    color: white;
    font-family: 'Oswald', sans-serif;
    height: 50px;
    width: 200px;
    background-color: rgba(11, 11, 11, 0.3);
    transition: 0.5s;

}
.start:hover{
    background-color: rgba(11, 11, 11, 0.5);
    transform: scale(1.05);
}
