* {
    padding: 0;
    margin: 0;
}

body {
    background-color: maroon;
    background-image: url(/images/background.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    color: white;
    font-family: 'Marcellus', sans-serif;
    font-size: 18px;
}

a {
    text-decoration: none;
    color: white;
    font-family: 'Marcellus', sans-serif;
    font-size: 18px;
    transition: 0.3s ease-in-out;
}

a:hover {
    color: tomato;
}

.main-section {
    width: 100%;
    height: 100vh;
    text-align: center;
}

.main-content {
    padding-top: 25%;
}

.domain-name {
    position: relative;
    width: 100%;
    background-image: linear-gradient(to left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.45) 50%, rgba(255,255,255,0) 100%);
    padding: 20px 20px;
    box-shadow: 11px 10px 9px 1px rgba(0,0,0,0.4);
    -webkit-box-shadow: 11px 10px 9px 1px rgba(0,0,0,0.4);
    -moz-box-shadow: 11px 10px 9px 1px rgba(0,0,0,0.4);
    font-size: 24px;
    font-weight: bold;
    color: black;
}

.display-1 {
    text-shadow: 3px 3px rgba(0, 0, 0, 0.8);
}

.info {
    font-size: 18px;
    font-family: 'Marcellus', sans-serif;
}