body {
    font-family: Arial, sans-serif;
    background-color: #464343;
    display: flex;
    justify-content: space-between; /* changed this */
    align-items: center;
    flex-direction: column; /* added this */
    height: 60vh;
    margin: 0;
}

.calculator {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
}

#moneyInput {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #45a049;
}

#result {
    margin-top: 20px;
    font-weight: bold;
}

.returnButton {
margin-bottom: 20px;

}

.returnButton a {
    text-decoration: none;
    color: white;
}
.buyRamen {
    display: block;
    margin: 20px auto;
    text-align: center;
}
.socialMedia {
    display: flex;
    flex-direction: row;
    margin: 20px auto;
    text-align: center;
    padding-top: 0;
    margin-top: 0;

}

.socialMedia a i {
    font-size: 50px;
    padding: 20px;
}

.callToAction {
    text-shadow: 0 0 5px #45a049, 0 0 10px #45a049, 0 0 15px #45a049;
    color: white;
}