@import url('https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Google+Sans+Code:ital,wght@0,300..800;1,300..800&family=Inconsolata:wght@200..900&family=Jersey+10&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("https://devforum-uploads.s3.dualstack.us-east-2.amazonaws.com/uploads/original/4X/1/2/3/123d506544b822f76eda383e20c0550e8c0a9505.jpeg");
    background-size: cover;
    background-position: center;
    font-family: 'DM Mono';
}

/* center logo + button vertically */
.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center; /* center horizontally */
    gap: 20px; /* space between logo and button */
}

#DCwidget {
    background-color: #4d73fc;
    color: white;
    width: 90px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;

    /* Add this line for animation */
    transition: background-color 0.3s ease;
}

#DCwidget:hover {
    background-color: #012194;
}
#info{
    color:white;
    width: 50%;
    height: 50%;
    text-align: center;
    background-color: rgba(128, 128, 128, 0.422);
    border-radius: 10px;
}
h2{
    font-size: 20px;
}

#backbutton {
    background-color: #000000;
    color: white;
    width: 90px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;

    /* Add this line for animation */
    transition: background-color 0.3s ease;
}

#backbutton:hover {
    background-color: #012194;
}
img{
    width: 30%;
}