@font-face {
    font-family: 'Jersey 25';
    src: url('fonts/Jersey25-Regular.ttf') format('truetype');
}

body {
    background-image: url('graphics/bg.gif');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #FFFFFF;
    font-family: 'Jersey 25';
}

.logo {
    width: 601px;
    height: 150px;
    border-radius: 10px;
}

.mainContainer {
    width: 100%;
    max-width: 601px;
    height: auto;
    padding: 20px;
    margin: 50px auto;
    background-color: #302E8E;
    border-color: #000000;
    border-radius: 10px;
    border-width: 5px;
    border-style: solid;
    box-sizing: border-box;
    overflow-wrap: break-word;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.title {
    margin: 0;
    font-size: 2.5rem;
}

.text {
    margin: 30px 0 0 0;
    font-size: 1.5rem;
}

.caText {
    font-size: 25px;
}

.buttons {
    margin: 30px 48px 0 48px;
    display: flex;
    justify-content: space-between;
    gap: 35px;
}

.button {
    margin: 0;
    width: 100px;
    height: 100px;
    box-sizing: border-box;
    border: 3px #000000 solid;
    border-radius: 10px;
    background-color: #4442A9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ca {
    cursor: pointer;
    display: inline-block;
}

.ca:hover {
    text-decoration: underline;
}

.copied-message {
    display: none;
    color: rgb(255, 255, 255);
    font-size: 14px;
    margin-top: 10px;
}

.copied-message.active {
    display: block;
}

@media screen and (max-width: 480px) {
    main {
        align-items: center;
    }

    .title {
        font-size: 1.8rem;
    }

    .text {
        font-size: 1rem;
    }

    .button {
        width: 60px;
        height: 60px;
    }

    .img {
        width: 50px;
        height: 50px;
    }
}