body {
    background-image: url(img/bg_1.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    font-family: 'Times New Roman', Times, serif;
    margin: 0px;
    padding: 0px;
}

.container {
    display: none;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    position: absolute;
}

.form {
    background-color: #ffffff44;
    width: 400px;
    border-radius: 20px;
    margin-top: -100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

h1{
    color: rgb(123, 10, 10);
    font-size: 2em;
    margin-bottom: 5px;
    margin-left: -100px;
}

input {
    width: 70%;
    text-align: center;
    font-weight: bold;
}


input[type="text"] {
    color: rgb(173, 2, 67);
    background-color: white;
    font-size: 1.2em;
    height: 30px;
    border-radius: 20px;
}

input[type="button"] {
    width: 150px;
    height: 40px;
    font-size: 17px;
    background-color: pink;
    color: rgb(173, 2, 67);
    border-radius: 20px;

    margin-top: 20px;
    margin-bottom: 20px;
}

input[type="button"]:hover {
    border-color: rgb(173, 2, 67);
}

.logo-display{
   width: 100%;
   height: 100vh;
   background-color: pink;
   position: absolute;
   justify-content: center; 
   align-items: center;
   display: flex;
   flex-direction: column;
}

.logo-display span {
    font-size: 6rem;
    color: White;    
}

#logoLine {
    background-color: white;
}

.hidden {
    display: none;
}

#heart {
    color: red;
}

.result-container {
    width: 100%;
    height: 100vh;
    background-color: #de496f88;
    display: none;
    justify-content: center;
    align-items: center;
}

.result-display {
    width: 60%;
    max-width: 600px;
    height: 450px;
    background-color: #FFFFFFFF;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    
}

.close-button {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background-color: black;
    color: red;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    left: 45%;
    top: -12%;
}

.name-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 80%;
    margin: 0%;
}

.name-container span {
    font-size: 3.5rem;
    color: rgb(173, 2, 67);
}

.heartDiv {
    background-image: url(./img/bgHeart.png);
    background-size: cover;
    width: 135px;
    height: 125px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.heartDiv > span {
    padding-bottom: 23px;
    color: white;
}

@media( max-width: 1000px) {
    body{
        background-image: url(./img/mbg1.jpg);
    }
   
    .form {
        width: 90%;
        height: 600px;
        
    }
    
    input[type="text"] {
    color: rgb(173, 2, 67);
    background-color: white;
    font-size: 3.5rem;
    height: 100px;
    border-radius: 50px;
}

    h1{
        font-size: 3.5rem;
    }

    input[type="button"] {
        font-size: 3.5rem;
        width:60%;
        height: 100px;
        border-radius:50px;
        
    }
}