.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;


    gap: 300px;
    max-width: 400px;
    width: 100%;
    margin: 0;
    padding-top: 100px;
    padding-bottom: 100px;

    position: relative;
    z-index: 10;

    background-color: rgba(.5, .5, .5, .5);
}

.image {
    position: absolute;
    top: 0;
    left: 0;
    
    height: 100%;
    width: 100%;
}

.image img {
    display: block;
    
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1 {
    font-family: "Kalnia Glaze", serif;
    font-size: 50px;
    text-align: center;
}
p{
    font-family: "Titan One", sans-serif;
    font-size: 30px;
    color: rgba(212, 212, 212)
}

body {
    margin: 0;
}