/*Refer to HTML*/
body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #173537 !important;
}

@keyframes fadeSlideIn {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

/*Refer to HTML*/
.main-logo{
    height: 150px;                  
    width: 150px; 
    margin-bottom: 50px;
}

/*Refer to HTML*/
#MainScreen{
    height: fit-content;
    width: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    box-shadow: 0 6px 20px rgba(0, 255, 159, 0.15);
    background-color: #091717;
    animation: fadeSlideIn 1s ease-out forwards;
    margin-bottom: 28vh;
}

/*Refer to HTML*/
#Message{
    width: 100%;
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 10px;
    text-align: center;
    color:#00FF9F;
    font-size: x-large;
    font-family: "Varela Round", sans-serif !important;
}

/*Refer to HTML*/
#Buttons{
    width: 450px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 2%;
    gap: 30px;
}

/*Refer to HTML*/
#Buttons button {
    width: 100%; /* buttons will match #Buttons width */
    height: 50px;
    border-radius: 20px;
    background-color: #173537;
    border: none;
    outline: none;
    color:#C1E1C1;
    font-family: "Varela Round", sans-serif;
    transition: color 0.1s ease,border 0.4s ease;
    display: flex;                 /* Enables layout for logo + text */
    align-items: center;
    justify-content: center;
    gap: 10px;                     /* space between image and text */
    cursor: pointer;
}

/*Refer to HTML*/
.button-icon {
    height: 24px;                  
    width: 24px;
    object-fit: contain;          
}

/*Refer to HTML*/
.meta-icon{
    height: 24px !important;
    width: 70px !important;
}

#Buttons button:hover{
    color:#00FF9F;
    border: 1px solid #00FF9F;
}

#Buttons button:focus {
    color:#00FF9F;
    border: 1px solid #00FF9F;
}  