*{
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #333333;
}

.container {
    color: #ffffff;
    text-transform: uppercase;
    text-align: left;
}

.container p {
    text-transform: none;
    text-align: left;
}
.background {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: -100;
    opacity: .2;
}

h1 {
    font-size: 40px;
    margin-bottom: 30px;
}

.container a {
    text-transform: none;
    display: inline-block;
    color: #ffffff;
    /* font-size: 12px; */
    margin: 0px; 3px;
    transition: .3s linear;
}

.container a:hover {
    transform: scale(1.1);
}

.button {
    display: inline-block;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    color: #ffffff;
    background-color: #bdb550;
    border-radius: 6px;
    outline: none;
    transition: 0.3s;
    border: 2px solid transparent;
}
.button:hover,
.button:focus {
    background-color: #bebd93;
    border-color: #bdb550;
}

