@import url('https://fonts.googleapis.com/css2?family=Satisfy&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background: url(image/8200.jpg);
    background-size: 20%;
    height: 100vh;
    animation: flow 50s linear infinite;
}

@keyframes flow {
    0% {
        background-position: 200px -1200px;
    }
    100% {
        background-position: 200px 0px;
    }
}

.welcome{
    position: absolute;
    font-family: 'Satisfy', cursive;;
    color: #ffffff;
    top: 50%;
    left: 35%;
    font-size: 800%;
}

.title{
    position: absolute;
    color: #0f0f0f;
    left: 50%;
    top: 105%;
    transform: translate(-50%, 0%);
    font-family: 'Press Start 2P', cursive;
    font-size: 500%;
}

.container{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.object{
    size: 150%;
}
.container {
    background-image: url('image/background.jpg');
    height: 100%; 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

.competitor_box {
    background-color:#0f0f0f;
    width: 40%;
    height: 50%;
    position: relative;
    top: 25%;
    float: left;
    border: 5px solid rgba(245, 245, 245, 0.37);
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    color: rgb(255, 255, 255);
    margin: 0% 5% 5% 5%;
}

.competitor_box h2{
    text-align: center;
    font-size: 200%;
    margin: 2%;
}

.competitor_box p{
    text-align: left;
    margin: 2%;
}

.competitor_box img{
    height: 45%;
    position: relative;
    border: 5px solid rgba(245, 245, 245, 0.37);
    border-radius: 5px;
    left: 50%;
    transform: translate(-50%, 0%);
}

.competitor_crown{
    position: absolute;
    height: 15%;
    left: 45%;
    top: 110%;
    transform: translate(-50%, 50%);
    z-index: 2;
}