*{
    margin:0;
    padding: 0;
}

body {
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* Internet Explorer/Edge */
    user-select: none;         /* Standard */

}

.main-container{
    height: 100vh;
    width: 100vw;
    background-color: white;
    padding: 2.5vh 2.5vw;
    box-sizing: border-box;
}

.background-box{
    background-color: #f7f7f1;
    margin-top: 0.5vh;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border-radius: 15px;
    position: relative;
    flex-wrap: wrap;
    overflow: auto;
    padding-bottom: 10px;
}

.home{
    text-align: center;
    margin-top: 20px;
    font-family: 'Karma';
    font-weight: bold;
    font-size: 20px;
    transition: transform 0.3s ease;
    width: auto;
    margin-left: 40%;
    margin-right: 40%;
    height: auto;
}

.home a{
    color: black;
    text-decoration: none;
    color:#0060bf
}

.home:hover{
    transform: scale(0.9);
}

.home a:hover{
    text-decoration: underline;
}

.moments-heading{
    font-family: 'Jersey 25';
    text-align: center;
    font-size: 50px;
    margin-top: 25px;
    text-decoration: underline;
}

.background-box img{
    margin: 25px auto;
    width: 15%;
    height: 15%;
    border-radius: 10%;
    display: block;
}

.info-text{
    font-family: 'Karma';
    font-size: 64px;
    text-align: center;
    text-decoration: underline;
}

@media (min-width:320px){
    .background-box img{
        width: 150px;
        height: 200px;
    }

    .info-text{
        font-size: 50px;
    }
}

@media (min-width:500px){
    .background-box img{
        width: 250px;
        height: 400px;
    }

    .info-text{
        font-size: 60px;
    }
}