@font-face {
    font-family: RobloxClassicfont;
    src: url(../projects/findthesecrets.ttf);
}

* {
    padding: 0;
    margin: 0;
    font-family: RobloxClassicfont;
}

body {
    background-color: black;
    background-image: url(../images/tilestransparent.png);
    animation: movingBackground 5s linear infinite;
}

.top {
    top: 0;
    height: 30px;
    text-align: center;
    color: white;
}
.top a {
    font-size: 25px;
    margin-right: 25px;
    margin-left: 25px;
}

.sectionA {
    text-align: center;
    background-image: url(../images/findthesecrets_background.png);
    background-repeat: no-repeat;
    background-size: cover;

    min-height: 250px;
    height: calc(50vh - 30px);
}
.sectionA img {
    min-width: 500px;
    width: 50vw;

    margin-top: 5vh;
    margin-bottom: 2vh;
}

.sectionAShadow {
    background-image: linear-gradient(to bottom, rgba(121, 121, 121, 0.274), rgba(0, 0, 0, 0));
    height: 1vh;
}

.sectionB {
    color: white;
    text-align: center;
    font-size: large;
    margin-top: 15px;
    line-height: 30px;
}
.sectionB h3 {
    margin-top: 20px;
}

@keyframes movingBackground {
    from { background-position: 0 0;}
    to {background-position: 100px 100px;}
}


a {
    text-decoration: none;
    font-style: italic;
    color: rgb(255, 255, 255);
}
a:hover {
    color: rgb(199, 199, 199);
}

.gameplayImage {
    width: 311.75px;
    margin: 10px;
    margin-top: 20px;
}

