@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}

::-webkit-scrollbar {
    width: 0;
    height: 0;
}

body {
    background-color: black;
    font-family: Arial, Helvetica, sans-serif;
}

img {
    width: 100%;
}

a {
    display: block;
    text-decoration: none;
    font-weight: bolder;
    color: white;
    font-size: 1.2em;
    text-align: center;
    padding: 20px;
    background-color: rgb(72, 72, 255);
    border-radius: 10px;
    margin-top: 40px;
    transition: .2s ease-in-out;
}

a:hover {
    letter-spacing: 2px;
    transition: .2s ease-in-out;
}