* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url("images/backgroundImage.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.container {
    display: flex;
    width: 450px;
    height: fit-content;
    background-color: rgba(194, 205, 195, 0.726);
    border-radius: 8px;
    padding: 40px;
    align-items: center;
    @media screen and (max-width: 450px) {
        width: 100%;
    }
}

img {
    width: 100%;
}