body {
    background-color: #202124;
    text-align: center;
    margin: 0;
    padding: 0;
}

.links {
    position:fixed;
    top: 20px;
    right: 30px;
    font-size: 15px;
    text-decoration: none;
    border-radius: 10%;
    display: flex;
    gap: 10px;
}

.links a {
    margin: 10px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    background-color: aliceblue;
    padding: 5px;
    border-radius: 10px;
}

.links a:hover {
    color: white;
    background-color: #1a73e8;
}

h1 {
    font-family: Arial, sans-serif;
    text-align: center;
    font-size: 80px;
    padding-top: 100px;
    margin: 50px auto 100px;
    border-radius: 50%;
    color: white;
    width: auto;
    height: 50px;
}

form {
    text-align: center;
}

.label-text-box {
    color: aliceblue;
    font-size: 20px;
    width: 220px;
    text-align: left;
    padding: 0;
    margin: 20px;
}

form .input-text-box {
    flex: 1;
    padding-left: 20px;
    background-color: #3c4043;
    height: 40px;
    border-radius: 20px;
    color: white;
    border: 1px solid white;
    width: 500px;
}

form .input-text-box:hover {
    background-color: #6f6f6f;
}

form .input-icon {
    font-family: arial, sans-serif;
    font-size: 14px;
    color: #e8eaed;
    background-color: #49494a;
    width: 130px;
    height: 36px;
    border-radius: 4px;
    margin-top: 5px;
    text-align: center;
    padding: auto;
    margin-left: 15px;
    line-height: 36px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

form .input-icon:hover {
    border: 1px solid #e8eaed;
    background-color: #5f6368;
}

.input-text-boxes {
    display: grid;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.google-logo {
    display: block;
    margin: 80px auto 40px;
    width: 90%;
    max-width: 300px;
}

.search-box {
    display: inline;
    color: white;
    font-size: 30px;
}

.field {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    margin: auto;
}

